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


Please Help Members By Posting Answers For Below Questions

What are session objects?

723


I’m having some trouble with cas. How can I diagnose my problem?

780


In which event of the page life cycle, is the viewstate available?

683


What is the latest version of asp.net?

729


Explain swagger components.

741


How to fetch a data from one table to another table in asp.net ?

771


Do I need to have the latest version of windows media player installed?

698


What is asp.net master page?

737


What is repository pattern in mvc.net? : asp.net mvc

701


What is page request in asp.net?

717


Explain asp.net application life cycle?

731


Can you edit data in the Repeater control? Which template must you provide, in order to display data in a Repeater control? How can you provide an alternating color scheme in a Repeater control? What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?

761


What are the components of ado.net?

697


Explain the various authentication mechanisms in asp.net.

693


Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?

762