.Net & SharePoint '07

Technical blog for .Net and all SharePoint 2007 related Information

About the author

Me(Prince) and my wife are B.E in I.T & C.S.E respectively.  I a certified MCPD: Web from 2007 Dec. I am Intrestes in Web Application, MOSS, EPM, etc.
Now working with Deira International School, as IT Application & Help Manager. I have started my career as "Software Developer" @  REACH Sewn Technologies and Consulting Pvt. Ltd, Bangalore India from Oct 2004 to Feb 2006, then as "Web & Intranet Developer" @ Fosroc International Ltd, Dubai from April 2006 to Sep 2009.
You can catch me on mail@jpy-tech.com or mail@princepy.com. Or on 00971 - 50 - 4284530 

Google Translate

Tag cloud

Calendar

<<  September 2010  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

View posts in large calendar

RecentComments

Comment RSS

Google Your Location


How to find Page load time?

Entry point to every page is Page_Init(), and the exit point after loading is Page_PreRender(), so here is the code

/******************Source Code****************************/ 
private DateTime _start;
private DateTime _end;
protected
void Page_Init(object sender, System.EventArgs e)
{
    _start =
DateTime.Now;
}

protected void Page_PreRender(object sender, System.EventArgs e)
{
    _end =
DateTime.Now;
    TimeSpan time = _end.Subtract(_start);
    lblPageLoadTime.Text =
string.Format("Page loaded in {0} seconds.", time.TotalSeconds.ToString());
}
/******************Source Code****************************/ 


Categories: ASP.Net 2.0
Posted by prince on Tuesday, June 17, 2008 10:33 AM
Permalink | Comments (0) | Post RSSRSS comment feed