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 is postback in asp net?
What is true about application service provider?
can s/w quality assurance engineer switch field to programming side i m very much interested in programming but not much good in it
What is the default authentication mode for asp.net?
How can we prevent browser from caching an aspx page?
What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?
Is post back property in asp net?
Explain the namespace classes used in asp.net mvc? : asp.net mvc
What is an il?
What is the main differences between asp and asp.net?
Where would you use an ihttpmodule, and what are the limitations of any?
Explain what is event bubbling?
Can you explain one critical mapping? Performance issue which one is better?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
What is asp.net? How is it different from asp?