What is HTTP MODULE & HTTP HANDLERS in ASP.NET? How a
developer can utilize in the application? Please provide
example.



What is HTTP MODULE & HTTP HANDLERS in ASP.NET? How a developer can utilize in the application..

Answer / answerme

An ASP.NET HTTP handler is the process that runs when any
request is 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.

For HTTP Handler implementation (Synchronous):
http://msdn.microsoft.com/en-us/library/ms228090.aspx

For Registering HTTP Handler:
http://msdn.microsoft.com/en-us/library/46c5ddfy.aspx

For Configuring HTT handler:
http://msdn.microsoft.com/en-us/library/bb515343.aspx

For HTTP module implementation :
http://msdn.microsoft.com/en-us/library/ms227673.aspx

Is This Answer Correct ?    12 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What is cookies in asp net?

0 Answers  


Which object encapsulates state or data of a user?

0 Answers  


Define caching.

0 Answers  


what is an Eventbubbling?

3 Answers   DSS,


What is the difference between viewstate and hidden field in asp.net?

0 Answers  


If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) In my application?

0 Answers  


What is the use of global.asax file?

0 Answers  


What is mta?

0 Answers  


Differentiate between file-based dependency and key-based dependency.

0 Answers  


What is the displayafter property in updateprogress control?

0 Answers  


Explain the concept of View Model in MVC?

0 Answers   B-Ways TecnoSoft,


Any alternative to avoid name collisions other then Namespaces?

1 Answers  


Categories