|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。页面怎样取得asp页面的载进工夫
<!---HowcanItimetheexecutionspeedofmyASPpagestothemillisecond?--->
Doingthisiseasywithasimpleserver-sideJavaScriptfunction:
<scriptlanguage=jscriptrunat=server>
functionGetTime()
{
vard=newDate();
returnd.getTime();
}
</script>
ThegetTime()methodoftheDateobjectinJScriptreturnsthenumberofmillisecondsinceJan1st,1970.Thereforeallyouhavetodoittakeareadingimmediatelybeforeandaftertheprocessyouarewantingtotime.Thefollowingisanexample,giventhattheabovecodeitinGetTime.asp:
DimStartTime,EndTime
StartTime=GetTime()
Dosomestuffhere
EndTime=GetTime()
Response.Write"Theprocesstook:"&_
Cstr(EndTime-StartTimes)&"mstoexecute"
Ifyouwanttoseeyourprocesstimeinabetterformat,usetheFormatMillisecondsfunction(createdfortheabovetimingscriptbywww.learnasp.com):
functionFormatMilliseconds(intMilliseconds)
{
varelapsedsecs=0
arelapsedmins=0
elapsedsecs=Math.floor(intMilliseconds/1000);
intMilliseconds=intMilliseconds%1000;
elapsedmins=Math.floor(elapsedsecs/60)
elapsedsecs=elapsedsecs%60;
elapsedpretty=elapsedmins+"minute";
if(elapsedmins!=1)
elapsedpretty=elapsedpretty+"s";
elapsedpretty=elapsedpretty+""+elapsedsecs+"second";
if(elapsedsecs!=1)
elapsedpretty=elapsedpretty+"s";
elapsedpretty=elapsedpretty+""+
intMilliseconds+"millisecond";
if(intMilliseconds!=1)
elapsedpretty=elapsedpretty+"s";
returnelapsedpretty;
}
</p>因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。 |
|