What are Http handler ?
Answer / 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 |
Difference between singleton and singlecall.
What is client side state management?
what are types of viewstate
How response object is related to asp's response object?
About Postback ?
How to retrieve data row by row from a DataTable? Thanks In advance PriyaPP
Can we override the enablepartialrendering property of the scriptmanager class?
Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?
what are the new server controls added in Asp.net 2.0?
Types of values mode can hold session state in Web.Config?
What is the current version of asp.net?
Give real time examples for polymorphism, encapsulation, inheritance..
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)