/ Published in: ASP
This function return a string with all the get parameters and their values.
Expand |
Embed | Plain Text
Function requestGet() Dim Temp If Request.ServerVariables("QUERY_STRING") <> "" Then Temp = Temp & Request.ServerVariables("QUERY_STRING") Else Temp = "None" End If requestGet = Temp End Function
You need to login to post a comment.
