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

can i call the java script to code behind file?if yes how?

4 Answers   Wipro,


What are the types of validation in asp net?

0 Answers  


What are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?

0 Answers  


What is the importance of Global.asax in ASP.NET?

0 Answers   B-Ways TecnoSoft,


What is the main function of url routing system in asp.net mvc? : asp.net mvc

0 Answers  






How to comment out asp.net tags?

0 Answers  


What does it mean your session has timed out?

0 Answers  


i have one gridview contains edititemtemplate(which contains update and cancel buttons) and i have one item template (contains edit button) i want the code for update and cancelbuttons in edit item template and i want the code for edit button in itemtemplate. please help me

4 Answers  


Types of optimization and name a few and how do u do?

1 Answers   Accenture,


What are different methods of session maintenance in asp.net?

0 Answers  


What are the different types of validation controls provided in ASP.NET?

0 Answers   Sans Pareil IT Services,


What asp.net control can embed xaml into asp.net pages?

0 Answers  


Categories