Answer Posted / saroj
An ASP.NET HTTP handler is the process (frequently referred to as the "endpoint") that runs in response to a request 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.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the difference between session object and application object?
Securitywise What are the Enhancements in 2.0?
How do you store a value in viewstate and retrieve them?
What is the used of "ispostback" property?
Explain the difference between globalization and localization techniques
What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
Explain about asp.net 2.0 themes?
What is marshalling ? Is it a part of asp.net ?
What is base class of .net?
What is directive in asp net?
How many languages are supported by .NET at present time?
What is difference between Server.Transfer and Response.Redirect in ASP.NET?
Explain Authentication mechanism in dotnet
In which event of the page life cycle, is the viewstate available?
What is skin in asp.net?