Hi All,
I have an HttpApplication (Global.asax) in my web application, I use this to catch and log unhandled Exceptions and to setup WebFormURLRouting. This all works, however I want to move this code into my Application Framework, (ie not in Global.asax.cs)
I have just tried to create an HttpApplication class in the framework but it seems I cant override the Events? Anyway I believe I can use an HttpModule instead to use consume these events, does this:
1) Eliminate the need for the Global.asax completely?
2) How does this effect scaling up, ie eventually running the application on a web farm
3) I have HttpHandlers to handle other things like File Uploading and File downloading, is there a limit to how many HttpModule/HttpHandlers should be used or should these be combined somehow to reduce overhead?
Any comments appreciated