I need some code to find out if the browser is sending data the with the GET or POST method. Something like this:
IF "browser.method = POST" THEN
'Browser is sending data with the POST method
'Use Request.Form
objVar = Request.Form("Var"
Else
'Browser is sending data with the GET method
'Use Request.QueryString
objVar = Request.QueryString("Var"
End If
Thanks
IF "browser.method = POST" THEN
'Browser is sending data with the POST method
'Use Request.Form
objVar = Request.Form("Var"
Else
'Browser is sending data with the GET method
'Use Request.QueryString
objVar = Request.QueryString("Var"
End If
Thanks