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