Joined: Tue Mar 27, 2007 10:55 pm Posts: 2272 Location: Earth Has thanked: 39 time Have thanks: 61 time
To calculate the time for a page to load , you will need put two part of code at different places , one at the beginning of code and the other one at the end of page code.
At the header of your page .
Code:
<% Dim timeBegin timeBegin= Timer %>
At the footer of your page
Code:
<% Dim timeEnd, timeDifference timeEnd= Timer timeDifference= FormatNumber(timeBegin- timeEnd,5) Response.Write "Load time is "& timeDifference&"seconds" %>
_________________ Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )