Aug 12, 2015

How IIS Process ASP.NET Request

When client request for some information from a web server, request first reaches to 
HTTP.SYS of IIS. HTTP.SYS
 then 
send the request to respective  Application Pool then.
 Application Pool then forward the request to worker process to load the ISAPI Extension
 which will create an HTTPRuntime Object to Process the request 
via HTTPModule and HTTPHanlder. 
After that the ASP.NET Page LifeCycle events starts.

No comments:

Post a Comment