Can I install an HttpModule and use a Global.asx?
I am working on a legacy web site that has a Global.asx. I want to install an HttpModule that deals with unhandled exceptions. However, it appears that the legacy site is not honoring my HttpModule. I am fairly certain that my module works because I tested it on another site before trying to apply it to the legacy one. The only issue is that my handler is never called on the legacy site.
I could add an event handler via the Global.asx and call into newer code but this seems odd that I would need to install the handler and modify the Global.asx
...
Go to the complete details ...