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 runat?
What is connection pooling and how to enable and disable connection pooling?
What is the difference between c# and .net?
What is the mvc framework?
What is the use of worker process in asp.net?
Whats the difference between abstract factory pattern and factory pattern?
How many validators do ASP.NET have?
how to implement some securty aspect in our application i.e 1.cookie poisioning. 2.data encryption. 3.forcefull browsing 4.sql/code injection 5.securing web app by using web services ........my question is how to implement these thing in our application is this done by hard coding or by help of some tool
What are the server controls in asp.net?
How can we call webservices in Banking Applications? and where we are using it?
What is the use of response redirect in asp.net?
What is a 401 redirect?
What is content page in asp net?
What is the use of express session?
How asp.net mvc differs from asp.net web forms? : asp.net mvc