What are Http handler ?
Answer Posted / vikas kant
HTTP handlers are the .NET components that implement the
System.Web.IHttpHandler interface, they can act as a target
for the incoming HTTP requests and can be called directly
by using their file name in the URL.
HTTP handlers implement the following two methods:
1) ProcessRequest: called to process http requests and
2) IsReusable which indicates whether this instance of http
handler can be reused for fulfilling another requests of
the same type.
Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is data control in asp.net?
What is %20 in a url?
Is post back in asp.net?
What's the use of response.output.write()?
What are the server control tags in asp.net.?
Define web services in asp.net.
How do you store a value in viewstate and retrieve them?
Out of ASP or ASP.NET which one is stateless?
Where is the view state data stored?
How do session tokens work?
What is difference between rest and soap?
What is difference between Fragment Caching and Page Caching in ASP.NET?
What is the use of express session?
If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?
What is the difference between viewstate and hidden field in asp.net?