HttpModule Begin Request not firing.

Discussion in 'Site Programming, Development and Design' started by mkildea, Sep 3, 2011.

  1. I am attempting some programmatic path rewriting. Basically, the user clicks the button and the HttpModule's Begin request shoudl fire and say, If they asked for this, then send them there, etc. It works locally. But when I pushed it to the host it simply isn't firing at all.

    I tried switching to Classic Mode but that didn't do the trick. I also added an entry to the web config. As it is, I have two, shown below...

    <httpModules>
    <add type="PageLoader" name="PageLoader"/>
    </httpModules>

    and then I added this, but it didn't fix anything...

    <system.webServer>
    <modules>
    <add name="PageLoader" type="PageLoader" />
    </modules>
    </system.webServer>
     

Share This Page