What are Http handler ?
Answer Posted / rajeev kumar singh
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:
1) Page Handler (.aspx) – Handles Web pages
2) User Control Handler (.ascx) – Handles Web user control pages
3) Web Service Handler (.asmx) – Handles Web service pages
4) Trace Handler (trace.axd) – Handles trace functionality
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the various session state management options provided by asp.net?
How can we pass info between 2 asp.net pages?
A Web Service Can Only Be Written In .net. Is it True??
What is a postback url?
What is cookies cache and session?
ASP.NET 2.0's new membership API used for creating and managing user account is exposed through which 2 clause?
Is asp.net and .net same?
Explain the concept of event bubbling in ASP.NET?
What is jade template engine?
Explain the reason why the javascript validation not run on the asp.net button but run successfully on the html button?
Can I recieve both html markup for page and code in the asp.net web page's source code portion in the web browser?
What is a windows service?
Explain about secure socket layer?
Can we override the enablepartialrendering property of the scriptmanager class?
How is a session stored and maintained in asp.net?