List all Get Parameters


/ Published in: ASP
Save to your folder(s)

This function return a string with all the get parameters and their values.


Copy this code and paste it in your HTML
  1. Function requestGet()
  2. Dim Temp
  3. If Request.ServerVariables("QUERY_STRING") <> "" Then
  4. Temp = Temp & Request.ServerVariables("QUERY_STRING")
  5. Else
  6. Temp = "None"
  7. End If
  8. requestGet = Temp
  9. End Function

Report this snippet


Comments


You need to login to view comments.