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 are the three parts of an http response?
How asynchronous call can be implemented using delegates?
Is it possible to change the index of primary key on table?
Why we go for mvc instead of asp.net? : Asp.Net MVC
In Code-Behind class which kind of code (server or client) is found ?
In your ASP.NET 2.0 web application you want to display an image that is selected from a collection of images. What approach will you use to implementing this?
What is enableviewstatemac in asp net?
Write code to send e-mail from an asp.net application?
What is the server of asp.net?
8. Why do you want to work here?
How can exception be handled with out the use of try catch?
Explain http handlers? Where we can use the http handlers?
Explain what is the procedure to create the environment for asp.net? : asp.net mvc
What is content place holder?
Explain Life cycle of ASP.NET page when a request is made.