Return to Snippet

Revision: 33995
at October 15, 2010 20:10 by sikwan


Initial Code
Function requestPost()
	Dim Temp
	i = 0
	For each d in Request.form
		if i = 0 then
			Temp = Temp & d & "=" & Request.form(d)
		else
			Temp = Temp & "&"& d & "=" & Request.form(d)
		end if
		i = i+1
	Next
	requestPost = Temp
End Function

Initial URL


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

Initial Title
List all Post Parameters

Initial Tags
post

Initial Language
ASP