2001-12-19 Gaurav Vaish <gvaish@iitk.ac.in>
[mono.git] / mcs / class / System.Web / System.Web / NOTES
index 311ff716f6c7ac2e3dee0c347b27e1ae7cc71605..55926bd4ef9704b8bf25a398f2bd7f03d93f8ec9 100644 (file)
@@ -1,3 +1,14 @@
+Found another namespace not listed. System.Web.Hosting.
+HttpRuntime.ProcessRequest and HttpWorkerRequest seems to be the key. 
+
+ASP maintains a pool of HttpApplication objects dirived from Global.asax.
+One is used per request, then reclamed after the request is totally
+complete.
+
+Read:
+http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguidnf/html/cpconaspnetapplications.asp
+
+
 Request notes:
 It apears each http request has its own thread. Need to figure out how to deal with this with apache.