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
When should I use server transfer and response redirect?
What is enableviewstate?
What is full trust in asp.net?
Explain about ASP.NET?
Is post back in asp.net?
Explain security types in asp.net?
If you are using two select queries and retrieving data. how do you access second query's result set using data reader?
What is asp.net mvc? : asp.net mvc
Explain the benefits of viewstate?
What are standard controls?
What is the good practice to implement validations in aspx page?
Which object wraps the state or data of a user?
Explain diff. Betn dataset and recordset?
Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution?
Is asp.net easy to learn?