ASP计算页面执行时间,精确到毫秒:

<%
StarTime=Timer()
'中间执行的代码
Response.Write "页面执行时间:" & FormatNumber((Timer()-StarTime)*1000,3) & "毫秒"
%>