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 a session in programming?
What is the difference between viewstate and hidden field in asp.net?
What are the different authentication modes in asp.net?
What are the differences between code behind and code inline?
What are the different web pages?
How can you handle errors in Web API?
Explain login controls.
What happens if an ASP.NET server control with event-handling routines is missing from its definition?
What is difference between viewstate and session in asp net?
What is a nested masterpage in asp.net 2.0? Can there be a master page inside a masterpage?
Why is it preferred to not use finalize for clean up?
What is repository pattern in mvc.net? : asp.net mvc
Explain the advantages of asp.net.
What is a master page and what does it do?
What are the new login controls in asp.net 2.0?