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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top