Any Class that implements System.Web.IHttpHandler
Interface becomes HttpHandler
. And this class run as processes in response to a request made to the ASP.NET Site.
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(The Class that implements System.Web.IHttpHandler
Interface).
You can create your own custom HTTP handlers that render custom output to the browser.
Some ASP.NET default handlers are: