what are Httpmodule and HttpHandler?
Answer Posted / rituparno
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 through the page handler. You can create your own
HTTP handlers that render custom output to the browser.
An HTTP module is an assembly that is called on every
request that is made to your application. HTTP modules are
called as part of the ASP.NET request pipeline and have
access to life-cycle events throughout the request. HTTP
modules let you examine incoming and outgoing requests and
take action based on the request.
An HTTP handler can be either synchronous or asynchronous.
A synchronous handler does not return until it finishes
processing the HTTP request for which it is called. An
asynchronous handler runs a process independently of
sending a response to the user. Asynchronous handlers are
useful when you must start an application process that
might be lengthy and the user does not have to wait until
it finishes before receiving a response from the server.
| Is This Answer Correct ? | 33 Yes | 3 No |
Post New Answer View All Answers
What is application state?
Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?
Explain the difference between page.registerclientscriptblock and page.registerstartupscript?
How to fetch a data from one table to another table in asp.net ?
Which type of state management is provided by Query String in ASP.NET?
Are cookies client side or server side?
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate?
What is session authentication?
What is the state management in asp.net?
What is the difference between localization and globalization?
What are the advantages of Web API?
Why we use content place holder in asp.net?
What is session management in web application?
Explain the Order of events in an asp.net page?
Can you dynamically assign a Master Page?