If you have control over an ASP.NET page, you can enable Trace. There you will get tons of page lifecycle information (including timestamps) and other useful profiling information.
Enable tracing for the page in the Page directive at the top of your aspx file:
<%@ Page Trace="true" %>
Or dynamically in the code:
Trace.IsEnabled = true;
Or globally in an application, set this to web.config:
<configuration> <system.web> <trace enabled="true" requestLimit="40" localOnly="false"/> </system.web> </configuration>
Also see the MSDN documentation for Trace.
awe
source share