I am currently using a custom IHttpHandler class for parsing requests and sending back responses. Are there any advantages to using any of the global.asax methods as well?
I am currently using a custom IHttpHandler class for parsing requests and sending back
Share
If you mean HttpApplication events vs IHttpHandler, they’re not really comparable.
HttpApplication events are usually used from IHttpModules for cross-cutting concerns that apply (in principle) to all HTTP requests.
This question explains the differences between IHttpModule and IHttpHandler