遇到了一個這樣的ASP問題:
在當前頁面上判斷,是否有參數ID傳遞過來?
如果沒有,顯示“沒有參數傳遞過來”。
如果有傳遞,但值為空,顯示“存在參數,但參數為空”
01
<%
02
if (request(
"id"
))=false then
03
response.write(
"不存在參數ID"
)
04
else
05
response.write
"有參數ID,"
06
if request(
"id"
)=
""
or isnull(request(
"id"
)) then
07
response.write
"但參數為空"
08
else
09
response.write
"參數是:"
&request(
"id"
)
10
end if
11
end if
12
%>
(鼠標移到代碼上去,在代碼的頂部會出現四個圖標,第一個是查看源代碼,第二個是復制代碼,第三個是打印代碼,第四個是幫助)