我希望能够在 ASP.net (VBscript) 中计算页面加载时间。将 Trace="true" 添加到页面指令很好,但我需要实际为事件计时并将其存储在变量中。
在 ASP 中,使用 Timer 对象很容易,但在 .net 中,我在 Google 上找不到任何东西。
我需要一些类似的东西:
Dim startTime
Dim endTime
startTime = now()
doBigFunction()
endTime = now()
response.write("That took " & endTime - startTime & " milliseconds")
干杯!