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 strong-typing versus weak-typing? Which is preferred? Why?

2 Answers  


What is the use of placeholder control?

0 Answers  


What is asp.net response object?

0 Answers  


Just by seeing the signature of the bean how can you specify whether it is a stateful or stateless session bean?

0 Answers  


What is web application virtual directory ?

2 Answers   Satyam,






What is css and what is it used for?

0 Answers  


What is event bubbling?

0 Answers  


Can you set which type of comparison you want to perform by the comparevalidator control?

0 Answers  


Types of optimization and name a few ?

3 Answers   Accenture,


You have multiline textbox and submit button. if you paste xml content into multiline textbox and hit submit button. what action will perform?

6 Answers   D&B,


how to get the vb6.0 COM Component in to the .Net application?

3 Answers   iSoft,


how can u display multi language (i.e english,spanish...) web site?

2 Answers  


Categories