What is a HttpHandler in ASP.NET, why and how is it used?
|
1
|
|
|
|
|
|
In the simplest terms, an ASP.NET HttpHandler is a class that implements the ASP.NET HTTPHandlers are responsible for intercepting requests made to your ASP.NET web application server. They 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. ASP.NET offers a few default HTTP handlers:
You can create your own custom HTTP handlers that render custom output to the browser. Typical scenarios for HTTP Handlers in ASP.NET are for example
You implement the The |
||
|
|
|
|
Maybe you can use this page from MSDN as a start: http://msdn.microsoft.com/en-us/library/bb398986.aspx |
||
|
|
|
|
An You might write your own, for example, to serve images etc from a database rather than from the web-server itself, or to write a simple POX service (rather than SOAP/WCF/etc) |
||
|
|
