/ Published in: ASP
This function return a string with all the get parameters and their values.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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