我想知道如何对旧的asp页面进行性能测试.你用过的任何工具?
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