獲取url包括參數
函數名
作 用
返回值
Public Function GetUrl()
Dim strTemp
strTemp=Request
If Trim(Request
strTemp=strTemp&"?"
For Each M_item In Request
strTemp=strTemp&M_item&"="&Server
next
end if
GetUrl=strTemp
End Function
使用方法
call GetUrl()
From:http://tw.wingwit.com/Article/program/net/201311/14359.html