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
Is asp.net mvc front end or backend? : Asp.Net MVC
What is the use of dispose method?
Explain the updatepanel?
How can u deifne the benefits and limitation of using Viewstate for state management?
What is true about application service provider?
What is the behavior of a Web browser when it receives an invalid element?
How do I force the dispose method to be called automatically, as clients can forget to call dispose method?
What are the differences between clr & cts?
Is it true that a Web service must be written in .NET or not?
What is the full form of asp.net?
How many types of state management are there in asp net?
Name the tools or API for developing or testing web api?
What are the Types of state management techniques
Explain the difference between asp & asp.net.
Explain page output caching?