建立页面加载时间

发布于 2025-01-07 12:10:25 字数 67 浏览 0 评论 0原文

您将如何在由 ASP 生成的页面底部打印 ASP 处理该页面所花费的时间。

谢谢,

巴里

How would you go about printing on the bottom of a page, produced by ASP, the time taken by ASP to process the page.

Thanks,

Barry

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心碎的声音 2025-01-14 12:10:25

假设您的页面中加载(或包含)这两个库函数,

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
%>

如果您想深入学习,请阅读 这篇 4guysfromrolla 文章

Assuming you have these two library functions loaded ( or included ) in your page

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

you can go something like this;

<%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
%>

If you want to learn it in depth, read this 4guysfromrolla article.

荒岛晴空 2025-01-14 12:10:25

看看如何获​​取最早的服务器请求,然后获取最新的客户端请求。
将一个日期时间减去另一个日期时间。祝你好运!

Look how to get the earliest server request and then the latest client request.
Subtract one DateTime from another. Good Luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文