In our asp.net 2.0 application, we use httpmodule and httphandler to calculate some metrics through cookies. To calculate the network transmission time, httpmodule: EndRequest stores the Transferstart in a cookie and httphandler: Processrequest uses datetime.now to subtract the transmission to determine the total network time. It's right? I also do not understand how the request process occurs. Does it do something like this: queries> HttpModule :: OnStart> HttpModule :: OnEnd> HttpHandler :: ProcessRequest?
source
share