Page execution time: It is the time it takes from the beginning of this page to the completion of this page.
The page execution time will be displayed at the end of the home page of many websites. Here is how to implement it:
First define a variable at the beginning of a web page:
dim startime
startime=timer()
where the page execution time is displayed, this place should be the page The end:
dim endtime
endtime=timer()
page execution time: <%=FormatNumber((endtime-startime)*1000,3)%> milliseconds
. Let’s try it!