ASP网页设计怎样取得asp页面的载进工夫(转)
强大的可扩展性。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代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。 跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组 我想问如何掌握学习节奏(先学什么再学什么)最好详细点? 用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。 从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了 如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。 封装性使得代码逻辑清晰,易于管理,并且应用到ASP.Net上就可以使业务逻辑和Html页面分离,这样无论页面原型如何改变,业务逻辑代码都不必做任何改动;继承性和多态性使得代码的可重用性大大提高。 在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。 掌握asp的特性而且一定要知道为什么。 完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
页:
[1]