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
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
What is custom attribute?
witch is the best insistute in sharpoint course.what abt future of share point course.
Can asp.net work on an nt server?
in which protocol ASP.NET WEB API Work?
Diff between web user control and web custom control?
What is http post action?
What is rich control in asp.net?
How can you ensure a permanent cookie?
What is razor? : asp.net mvc
Define asp.net caching?
What is tracing? Where is it used?
Explain how dot net compiled code will become platform independent?
What is side-by-side execution? Can two applications, one using a private assembly and other using a shared assembly, be stated as side-by-side executables?
how to include timer or counting time to display next page in asp.net