| Author: Garima Gupta 06 May 2007 | Member Level: Silver | Rating:  Points: 2 |
An HTTP handler is a process that runs in response to the request made to any asp.net page. Mainly there are following 4 handlers:
ASP.NET Page Handler (*.aspx)- This is default HTTP handler for all ASP.NET pages. Web service handler (*.asmx) This is default HTTP handler for Web service pages created using ASP.NET. ASP.NET user control handler (*.ascx) This is default HTTP handler for all ASP.NET user control pages. Trace handler (trace.axd) This displays current page trace information.
|
| Author: Sridhar R 14 Aug 2008 | Member Level: Diamond | Rating:  Points: 5 |
HTTP Module.. 1.It represents more something like an modulare peace of code that's similar to another Global.asax. 2.It represent code that is in play for all page requests. 3.These are objects which also participate the pipeline.
HTTP Handler.. 1.Its a handler for one request. 2.It is more like a single page. 3.These are the end point objects in ASP.NET pipeline. 4.These are essentially processes the request and produces the response
Regards Sridhar R Nothing is illegal, Until You Get Caught With Tears...Sridhar R
|