|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。ASP完成带进度条的测试网速。把以下代码存为xxx.ASP的文件,放在你的服务器上就能够间接运转了。<%
Response.Expires=0
Response.Expiresabsolute=Now()-1
Response.AddHeader"pragma","no-cache"
Response.AddHeader"cache-control","private"
Response.CacheControl="no-cache"
%><html>
<head>
<title>网速测试-51windows.Net</title>
<metahttp-equiv="content-type"content="text/html;charset=gb2312">
<bodystyle="cursor:wait;">
<pstyle="font-size:18pt;"><B>网速测试</B></p>
<pid="t"style="font-size:16pt;">正在测试,请稍候...</p>
<spanstyle="width:300;height:16px;background-color:gray;"><spanid="p"style="width:0;height:16px;background-color:red;"></span></span>
<scriptlanguage="javascript">st=newDate();function$(p){document.getElementById("t").innerHTML="正在测试,请稍候...("+p+"%)";document.getElementById("p").style.width=p*3;}</script>
<%
defaultfs=200数据默许巨细(K)
minfs=100数据最小值
maxfs=500数据最高值
fs=Request("s")
iflen(fs)=0orisnumeric(fs)=falsethenfs=defaultfs
ifint(fs)>maxfsthenfs=maxfs
ifint(fs)<minfsthenfs=minfs//asp98,cn
fora=1tofs%><!--$%^)!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()!@#$%^&*()--><scriptlanguage=javascript>$(<%=int(a*100/fs)%>)</script><%next%>
<scriptlanguage=javascript>
et=newDate();ds=<%=fs%>;s=Math.round(ds*1000/(et-st)*10)/10;document.body.style.cursor=default;
nextsize=<%=fs%>;if(s>100){nextsize=<%=maxfs%>;}elseif(s<20){nextsize=<%=minfs%>;}
document.getElementById("t").innerHTML="测试终了。您的速率:<fontcolor=red>"+s+"</font>(K/秒)[<ahref=?s="+nextsize+"&t="+Math.random()+">重测</a>]";</script>//asp98,cn
</body>
</html>
写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了.另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们) |
|