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
Can any body provide me the sample web application in asp.net
What is master page in dtp?
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)
What is data grid view in asp.net?
What is the difference between session and application?
What is the current version of asp.net?
How can we create a website?
How can you register a custom server control to a web page?
How many types of validators are there in asp net?
Describe session handling in a webfarm, how does it work and what are the limits?
Take a Large textbox allow to type any data. Task 1:display the count of vowels in a lable on key press event of the textbox Task 2:dispaly count of dates in a lable when dates in following foramats:dd/mm/yy , mm/dd/yy , yy/mm/dd. Task3:compare 2 dates and display both are same or not which dates are in dd/mm/yy and mm/dd/yy farmats.
Differentiate globalization and localization.
What is boxing and unboxing in asp.net?
What are the various session state management options provided by asp.net?
Explain the differences between clr & cts?