HTTP Handlers
What are Http Handlers in ASP.NET?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Sep 24, 2012, 10:57 PM
An ASP.NET HTTP handler is the process (frequently referred to as the "endpoint") that runs in response to a request made to an ASP.NET Web application. The most common handler is an ASP.NET page handler that processes .aspx files. When users request an .aspx file, the request is processed by the page through the page handler. You can create your own HTTP handlers that render custom output to the browser.
An HTTP module is an assembly that is called on every request that is made to your application. HTTP modules are called as part of the ASP.NET request pipeline and have access to life-cycle events throughout the request. HTTP modules let you examine incoming and outgoing requests and take action based on the request.
Please refer the below link
http://msdn.microsoft.com/en-us/library/bb398986%28v=vs.100%29.aspx
http://www.codeguru.com/csharp/.net/net_asp/article.php/c19389/HTTP-Handlers-and-HTTP-Modules-in-ASPNET.htm
http://www.codeproject.com/Articles/19367/Httphandlers-ASP-NET-2-0
http://www.developerfusion.com/article/4643/implementing-http-handlers-in-aspnet/
Thanks
If this post helps you mark it as answer