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 session objects?
I’m having some trouble with cas. How can I diagnose my problem?
In which event of the page life cycle, is the viewstate available?
What is the latest version of asp.net?
Explain swagger components.
How to fetch a data from one table to another table in asp.net ?
Do I need to have the latest version of windows media player installed?
What is asp.net master page?
What is repository pattern in mvc.net? : asp.net mvc
What is page request in asp.net?
Explain asp.net application life cycle?
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?
What are the components of ado.net?
Explain the various authentication mechanisms in asp.net.
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?