I'm trying to capture the values in the URL that is the result of redirection. The values are in the URL but when I do the following code, I get nothing.
strPDSID = Request.Form("pdsid"
If isempty("strPDSID"
Then
strPDSID = request.querystring("pdsid"
End if
Can anyone see why this won't work or give me clues otherwise to get the value? Mary
Rule 1: Don't sweat the small stuff.
Rule 2: EVERYTHING is small stuff!! X-)
strPDSID = Request.Form("pdsid"
If isempty("strPDSID"
strPDSID = request.querystring("pdsid"
End if
Can anyone see why this won't work or give me clues otherwise to get the value? Mary
Rule 1: Don't sweat the small stuff.
Rule 2: EVERYTHING is small stuff!! X-)