当前位置:  开发笔记 > 后端 > 正文

经典ASP页面的性能测试?

如何解决《经典ASP页面的性能测试?》经验,为你挑选了1个好方法。

我想知道如何对旧的asp页面进行性能测试.你用过的任何工具?



1> TravisO..:

PS:我假设旧的ASP你指的是"经典ASP"而不是ASP.NET.

这里是我要放在页面上的一小段VBScript代码,以确定它们执行的时间,您可能会发现它很有用.

<%
' Start the timer
starttime = timer()
%>



<%
' End the timer
endtime = timer()
' Get the difference
benchmark = endtime - starttime
' Output the timing result
%>
Execute: <%= benchmark %> secs

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有