Okay gang... going nuts here...
I'm trying to make a page redirect and hold onto the form data. So in my redirect code I have this
response.redirect "pds_reviewexisting.asp?pdsid=" & pdsid
Then my output page has this
intPDSID = Request.Form("pdsid"
If isempty("intPDSID" Then
intPDSID = Request.Querystring("pdsid"
End if
response.write "PDSID = " & intPDSID 'This is my visual test to see if it is getting captured.
The data in the address field of the browser is correct but not getting captured in the querystring. I'm not sure what I need to do to make it work!
Anyone have any ideas??
Mary
Rule 1: Don't sweat the small stuff.
Rule 2: EVERYTHING is small stuff!! X-)
I'm trying to make a page redirect and hold onto the form data. So in my redirect code I have this
response.redirect "pds_reviewexisting.asp?pdsid=" & pdsid
Then my output page has this
intPDSID = Request.Form("pdsid"
If isempty("intPDSID" Then
intPDSID = Request.Querystring("pdsid"
End if
response.write "PDSID = " & intPDSID 'This is my visual test to see if it is getting captured.
The data in the address field of the browser is correct but not getting captured in the querystring. I'm not sure what I need to do to make it work!
Anyone have any ideas??
Mary
Rule 1: Don't sweat the small stuff.
Rule 2: EVERYTHING is small stuff!! X-)