2012-02-21 81 views
0

如何在由ASP生成的頁面底部打印ASP處理頁面所用的時間。建立頁面加載時間

感謝,

巴里

+0

這看起來很有希望:http://clutteredcode.blogspot.com/2009/07/showing-page-load-time-asp.html – 2012-02-21 15:44:47

回答

0

假設你有這兩個庫函數加載(或包含)在你的頁面

sub StartTimer(x) 
    StopWatch(x) = timer 
end sub 


function StopTimer(x) 
    EndTime = Timer 
    'Watch for the midnight wraparound... 
    if EndTime < StopWatch(x) then 
    EndTime = EndTime + (86400) 
    end if 
    StopTimer = EndTime - StopWatch(x) 
end function 

,你可以去這樣的事情;

<%option explicit%> 
<!--#include virtual='/yourlibraryfunctionsfile_whichincludes_the_above_two_functions.asp'--> 
<% 
Dim StopWatch(1) 
'start timer 
StartTimer x 

'do your time taking code here 

'end timer 
elapsed_time = StopTimer(x) 

'print out how much that elapsed time is 
response.write elapsed_time 
%> 

如果你想深入瞭解它,請閱讀this 4guysfromrolla article

0

看看如何讓最早的服務器請求,然後最新的客戶端請求。 從另一個減去一個DateTime。祝你好運!