asp 獲取地址欄參數代碼
============================================
函數名
作 用
參 數
返回值
pos=InStr(
則pos會返回
這就是“查找”的實現
實現就是把當前位置作為起始位置繼續查找
============================================
function JoinChar(strUrl)
if strUrl="" then
JoinChar=""
exit function
end if
if InStr(strUrl
if InStr(strUrl
if InStr(strUrl
JoinChar=strUrl & "&"
else
JoinChar=strUrl
end if
else
JoinChar=strUrl & "?"
end if
else
JoinChar=strUrl
end if
end function
From:http://tw.wingwit.com/Article/program/net/201311/14150.html