Code Snippet posted by:
Ddd | Posted on: 1/31/2011 | Category:
ASP.NET Codes | Views: 1914 | Status:
[Member] |
Points: 40
|
Alert Moderator
//Write this coding in the Global.asax file
//when you run .aspx page, you can see the execution time in millseconds.
void Application_BeginRequest(object sender, EventArgs e)
{
Context.Items.Add("startime", DateTime.Now);
}
void Application_EndRequest(object sender, EventArgs e)
{
//Get the start time
DateTime dt=(DateTime)Context.Items["startime"];
//calculate the time difference between start and end of request
TimeSpan ts = DateTime.Now-dt;
Response.Write("number of milleseconds for execution"+"--"+ts.TotalMilliseconds);
}
dinesh k.