Return to Snippet

Revision: 33994
at October 15, 2010 20:09 by sikwan


Initial Code
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

Initial URL


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

Initial Title
List all Get Parameters

Initial Tags


Initial Language
ASP