HttpModule installer

  • Thread starter Thread starter magister
  • Start date Start date
M

magister

How can I include and configure a HttpModule to a website installer project?
or can I just do it all with web.config?
 
Generally you can just install an HttpModule by adding to the
<httpModules> section of web.config. There can be some special cases,
like if you want to inspect requests for .gif and .jpg files in the
module, then you'll need to fiddle in the IIS metabase to route those
requests through the asp.net pipeline. But generally, just web.config.
 
Back
Top