Answer Posted / alb.shah
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 ? | 7 Yes | 0 No |
Post New Answer View All Answers
Define a web service in .net?
How do active server pages work?
Is viewstate secure?
What is the difference between the asp and asp.net?
What are the navigation ways between pages available in ASP.NET?
What are cookies in asp.net?
What is the use of web.config and machine.config files?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC
Explain the difference between asp.net mvc and asp.net webforms
Which dll handles the request of .aspx page?
What is full form of asp.net?
Can you clarified A Web service can only be written in .NET or not?
How do you declare static variable? What is its lifetime?
What is the significance of ASP.NET routing?
What is http post action?