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
What are the main differences between asp and asp.net?
How should I destroy my objects in asp.net?
How would you create a permanent cookie?
Explain form level validation and field level validation?
Explain how do you validate the controls in an asp .net page?
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC
What are Caching techniques in .NET
What is the difference between session and viewstate in asp.net?
What is ascx?
What is asp.net caching?
Explain how to prepare culture-specific formatting in .net.
Can any body provide me the sample web application in asp.net
What are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?
In Data grid the question is below quantity price total these are 3 fields available in data grid if you enter quantity the total has to update automatically.Price field is already filled completely
What is DataGrid wheater its a Server Control or something else ?