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
How asp.net mvc differs from asp.net web forms? : asp.net mvc
What is the difference between exe and dll?
How to improve performance of web application asp.net mvc? : Asp.Net MVC
Explain how dot net compiled code will become platform independent?
What does passport and windows authentication mean in ASP.NET?
Is LINQ performance wise better or using sqlcommand?
How do you use viewstate?
What is viewstate information stored?
Why and where this web.config file is used?
Is asp net front end or backend?
Why does my asp.net file have multiple tag with runat=server?
Which is the parent class of the ASP.NET server control?
What are the new features implemented in ASP.NET?
How to fetch a data from one table to another table in asp.net ?
Why do we use sessions?