Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is Http Module and Http Handler?
Posted

SQL
HTTP Handler

HTTP Handler is the process which runs in response to a HTTP request. So whenever user requests a file it is processed by the handler based on the extension. So, custom http handlers are created when you need to special handling based on the file name extension. Let's consider an example to create RSS for a site. So, create a handler that generates RSS-formatted XML. Now bind the .rss extension to the custom handler.

HTTP Modules

HTTP Modules are plugged into the life cycle of a request. So when a request is processed it is passed through all the modules in the pipeline of the request. So generally http modules are used for:

Security: For authenticating a request before the request is handled.

Statistics and Logging: Since modules are called for every request they can be used for gathering statistics and for logging information.


Source: http://www.c-sharpcorner.com/blogs/7116/difference-between-asp-net-httphandler-and-httpmodule.aspx[^]
 
Share this answer
 
v2
Comments
Thomas Daniels 23-Feb-13 10:05am    
Maksud Saifullah Pulak 23-Feb-13 10:06am    
Sure.Thank You.
fjdiewornncalwe 23-Feb-13 10:09am    
Plagiarized: Source"
For overview of HTTP Module and HTTP Handler, have a look on below link.

HTTP Module & Handler

To Implement HTTP Module and HTTP go through below link

Implementation of HTTP Module & Handler

Hope these will help you!!

Thanks
Naveen
 
Share this answer
 
why didn't you googled first, before asking the question?
have a look at this:

The Two Interceptors: HttpModule and HttpHandlers[^]

hope it helps :D
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900