hi,
i want to know which class is responsible for receiving and forwarding a request to the appropriate HTTP handler?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Apr 10, 2012, 12:04 AM
IHttpHandlerFactory interface is responsible to handle request and response.
You can get more information about this:
http://msdn.microsoft.com/en-us/library/system.web.ihttphandlerfactory.aspx
http://weblogs.asp.net/andrewseven/articles/UrlRewriting.aspx
http://www.uberasp.net/GetArticle.aspx?id=49
http://www.codeguru.com/csharp/.net/net_asp/article.php/c19389/HTTP-Handlers-and-HTTP-Modules-in-ASPNET.htm
Jignesh TrivediPosted Apr 9, 2012, 11:28 PM
IHttpModule
IHttpHandler
IHttpAsyncHandler
hope this help.
Satyapriya NayakPosted Apr 9, 2012, 10:54 PM
IHttpHandlerFactory Class
Thanks