Morning all,
I'm just getting my head round http modules and have successfully got one working a-okay with an application using the web.config as follows:
<httpModules>
<add name="MyModule" type="MyModule.SyncModule, MyModule" />
</httpModules>
Now - i'm trying to get it so that my standard header is on all my apps without having to reference them all individually via the web.config. Everything i've read says that i just need to put an <add ... command in the httpmodules section of the machine.config. On inspecting this file i've got the following entry for httphandlers:
<section name="httpHandlers" type="System.Web.Configuration.HttpHandlersSection, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=..............." />
Can anyone advise as to what i need to do to change this section and add my custom reference? As you might have guessed I'm v new to working on machine.config files and have had no joy with google on this matter.
Thanks for any help you can give.
Rob
I'm just getting my head round http modules and have successfully got one working a-okay with an application using the web.config as follows:
<httpModules>
<add name="MyModule" type="MyModule.SyncModule, MyModule" />
</httpModules>
Now - i'm trying to get it so that my standard header is on all my apps without having to reference them all individually via the web.config. Everything i've read says that i just need to put an <add ... command in the httpmodules section of the machine.config. On inspecting this file i've got the following entry for httphandlers:
<section name="httpHandlers" type="System.Web.Configuration.HttpHandlersSection, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=..............." />
Can anyone advise as to what i need to do to change this section and add my custom reference? As you might have guessed I'm v new to working on machine.config files and have had no joy with google on this matter.
Thanks for any help you can give.
Rob