i currently use the context.timestamp function to get the time in the beginning of the request but i want to know if i can check the time sooner in the pipeline (before the load page phase) or the timestamp is the earlier time i can get. now i need to find the latest time after the request was processed, of course i can check the time in the end of the function, but is there somewhere else where i can check the time of the request ending.
thanx!
You can also tap into the IIS pipeline more directly by adding event handlers in Global.asax. You could handle
BeginRequestandEndRequestfor example, which occur well before and well after your Page handler is invoked.