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 session in web technology?

0 Answers  


How can you debug your.net application?

0 Answers  


If i have a web page, and one web user control, where in web page contains a text box, and web user control have check box, if i place a web user control in the webpage, when i check the check box, the out put should show it is checked or not. How we can do this?

1 Answers   CGI,


how to debug web services on consumer side?

0 Answers   HCL,


What is the need of client side and server side validation ?

1 Answers   Keane India Ltd,






What is validationsummary server control? where it is used ?

1 Answers  


Types of caching ?

1 Answers   Digital GlobalSoft, MicroSec, Wipro,


On what object is the transaction in ADO.NET focused on? a) The command object b) The DataSet object c) The Connection object d) The DataAdapter object

4 Answers   Syntax Softtech,


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 boxing? How we can use it?

4 Answers   Infosys, NIIT,


Disable Mouse right click on web page in asp.net?

0 Answers   HCL,


Mention the namespace that is used to include .net data provider for sql server in .net code?

0 Answers  


Categories