当前位置: 首页 > 图文教程 > 网络编程 > ASP > Request与Request.Form的速度测试

ASP
用ASP编写网络传呼机
用ASP+CSS实现随机背景
ASP下载系统防盗链方法
用ASP编写下载网页中所有资源的程序
Request.ServerVariables应用
解决Asp程序的Server.CreateObject错误
ASP实现TCP端口扫描的方法
源码实例:ASP实现远程保存图片
用ASP+DLL实现WEB方式修改服务器时间
ASP使用MySQL数据库全攻略
ASP+SQL Server构建网页防火墙
教程/ASP 十天学会ASP之第二天
教程/ASP 十天学会ASP之第四天
教程/ASP 十天学会ASP之第五天
教程/ASP 十天学会ASP之第六天
教程/ASP 十天学会ASP之第七天
教程/ASP 十天学会ASP之第八天
教程/ASP 十天学会ASP之第九天
教程/ASP 十天学会ASP之第十天
关于学习ASP和编程的28个观点

ASP 中的 Request与Request.Form的速度测试


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 23 ::
收藏到网摘: n/a

  经测试:

http://www.leadbbs.com/test?name=test

Request("name")的速度是非常快的,当请求的网址是
http://www.leadbbs.com/test?时,
Request("name")的速度下降了近二十来倍.

下面是测试代码,保存为test.asp

实际中,我们的请求一般仅针对表单的post请求与地址栏的get方法请求(Requestw函数).

<%
function Requestw(str)
     Dim tmp
     tmp = Request.QueryString(str)
     If tmp = "" Then tmp = Request.Form(str)
     Requestw = tmp
end Function

dim DEF_PageExeTime1
DEF_PageExeTime1=Timer * 1000

Dim n,happy
for n = 0 to 50000
     happy = Requestw("name")
Next

Response.Write abs(CDBL(Timer)*1000 - DEF_PageExeTime1)
%>