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" %>
_________________ M. S. Rakha, Ph.D. Queen's University Canada