Statistics
The Highest Post







Statistics
Count 98
Avg 20.27
Min 3
Max 21

Details



Peter Agyekum What are HttpHandlers? ASP.NET programming supports the creation of custom HttpHandler components, which provide an efficient way to process requests that don't return standard HTML-based pages. E.g. : HttpHandler components are good for situations in which you want to return XML, simple text or binary data to the user. The easiest way to create a custom HttpHandler component is to create a source file with an .ashx extension. You must then add a @WebHandler directive to the top of the .ashx file with a class definition that implements the IHttpHandler interface.
Related Topics