Request与Request.Form的速度测试

发表于:2007-06-30来源:作者:点击数: 标签:
经 测试 : http://www.leadbbs.com/test?name=test Request("name")的速度是非常快的,当请求的网址是 http://www.leadbbs.com/test?时, Request("name")的速度下降了近二十来倍. 下面是测试代码,保存为test.asp 实际中,我们的请求一般仅针对表单的post
测试

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)
%>

原文转自:http://www.ltesting.net