可以通過server.execute
傳遞參數嗎?通過server.execute傳遞參數?
Fx。我在我的site.asp
中有一個IF方案,我需要執行functions.asp?a=something&id=123
。這可能嗎?!
在site.asp:
dim id
id = 123
if b = "hi" then
server.execute("functions.asp?a=something&id=" & id)
else
response.write("No way dude")
end if
在functions.asp
a = request.querystring("a")
id = request.querystring("id")
if a = "something" and cint(id) > 100 then
response.write("Yes way dude")
else
response.write("No way dude")
end if
當你運行你的代碼時會發生什麼? –
Serverobject錯誤'ASP 0173:80004005'MapPath方法中參數路徑中的字符無效---或者類似的,它在我的屏幕上是丹麥語:) – Behrens
如果沒有查詢字符串參數,那麼會發生什麼? –