Creating HTTP Handlers : HTTP Handlers « Development « ASP.NET Tutorial






An HTTP Handler is a .NET class that executes whenever you make a request for a file at a certain path. 
Each type of resource that you can request from an ASP.NET application has a corresponding handler.

You can create a Generic Handler, or you can implement the IHttpHandler interface.








9.24.HTTP Handlers
9.24.1.Creating HTTP Handlers
9.24.2.Creating a Generic Handler
9.24.3.HelloWorld HttpHandler (VB)
9.24.4.Implementing the IHttpHandler Interface
9.24.5.RSS Handler
9.24.6.Creating a Custom HTTP Handler
9.24.7.Log user in HttpModule
9.24.8.Source viewer Http Handler