ASP显示页面执行时间的方法(asp显示时间代码)学到了

随心笔谈2年前发布 编辑
166 0
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买


<%@LANGUAGE=”VBSCRIPT” CODEPAGE=”936″%>
<%
Dim StarTime
StarTime=Timer()
%>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>获取ASP页面执行的时间</title>
</head>

<body>
<div align=”center”>
<img src=”https://www.jb51.net/article/xc_images/logo.jpg” />
</div>
<div align=”center” style=”width:400px;”>
<%
for i=1 to 10000
‘循环花费一些花间!
next
%>
</div>
<br>
</body>
</html>
<%
Dim EndTime
EndTime=Timer()
%>
<div align=”center”>当前页面执行的时间:<%=FormatNumber((EndTime – StarTime) * 1000, 3)%>毫秒</div>

© 版权声明

相关文章