What are Http handler ?
Answer Posted / sp
An ASP.NET HTTP handler is the process (frequently referred
to as the "endpoint") that runs in response to a request
made to an ASP.NET Web application. 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 via the page handler.
To create a custom HTTP handler, you create a class that
implements the IHttpHandler interface to create a
synchronous handler or the IHttpAsyncHandler to create an
asynchronous handler. Both handler interfaces require you
to implement the IsReusable property and the ProcessRequest
method. The IsReusable property specifies whether the
IHttpHandlerFactory object (the object that actually calls
the appropriate handler) can place your handlers in a pool
and reuse them to increase performance, or whether it must
create new instances every time the handler is needed. The
ProcessRequest method is responsible for actually
processing the individual HTTP requests.
| Is This Answer Correct ? | 34 Yes | 1 No |
Post New Answer View All Answers
What is difference between Lambda Expression and LINQ in ASP.NET?
What is full trust in asp.net?
What is session state server?
What is a web based system?
What is the procedure to handle the process request using mhpm events fired? : asp.net mvc
Explain how can we access static variable?
What is the default authentication mode for asp.net?
Do you know about caching with the datasource controls?
What are the asp.net 2.0 features?
Define managed code and managed data in .net?
Is web config mandatory?
What are main return types supported in Web API?
What is http request and response?
How can we call webservices in Banking Applications? and where we are using it?
What is asp.net localization?