HttpHandlers are classes that implement the IHttpHandler and IHttpAsyncHandler interfaces. This section describes how to create and register HttpHandlers and provides examples of a synchronous handler, an asynchronous handler, and a handler factory.
Introduces ASP.NET handling of HTTP requests.
Discusses the creation of synchronous and asynchronous HttpHandlers.
Describes how ASP.NET is configured to call an HttpHandler.
Describes how to generate a new handler instance for each HTTP request.
Related Sections
Provides an overview of how to use IHttpModule and IHttpHandler interfaces.
Provides an overview of HttpModules.