ASP請(qǐng)求對(duì)象Request
作者: 來源: 發(fā)布時(shí)間:2011-6-23 11:26:21 點(diǎn)擊:
下面提供給大家分享的是關(guān)于ASP請(qǐng)求對(duì)象Request的實(shí)例,希望能夠給大家?guī)韼椭騿l(fā)。
當(dāng)用戶通過HTTP訪問服務(wù)器,要按照一定的輸入?yún)?shù),返回不同的結(jié)果,要用到Request對(duì)象。
比如:http://localhost/zxg.asp?a=1&b=2
<%
if request("a")=1 and request("b")=2 then
//處理一些相關(guān)的內(nèi)容
respose.write("sdfdsf")
end if
set fso=server.createObject("scripting.filesystemobject")
set ReadTemp=fso.opentextfile("c:\zxhg.XML",1)
str=readtemp.readall
' response.contenttype="text/xml"
response.write(str)
上一篇:細(xì)看RS.GetRows 下一篇: ASP中AddHeader方法的介紹
[收藏此文章]