G
grnjeans922
A little guidance, please....
I'm trying to pass info through the querystring method, across 3
pages.
In my first page, it is being sent out using:
if regEx.test(strAskedFor) then
response.redirect("/store/catalog_request_frm.asp?
foundUs="&strAskedFor)
It lands on the second page just fine, I check the value using:
strAskedFor = Request.QueryString("foundUs")
response.write(strAskedFor)
Now here is where I'm stuck.....I'm trying to use this info again,
constructing a link, and after much tinkering,
I'm not sure if this is an acceptable use, or I'm just referencing
this wrong.
<a href="/store/catalog_request_frm.asp?foundUs="&strAskedfor>Send me
a Complete Catalog </a><br /><br />
Any assistance would be greatly appreciated!
I'm trying to pass info through the querystring method, across 3
pages.
In my first page, it is being sent out using:
if regEx.test(strAskedFor) then
response.redirect("/store/catalog_request_frm.asp?
foundUs="&strAskedFor)
It lands on the second page just fine, I check the value using:
strAskedFor = Request.QueryString("foundUs")
response.write(strAskedFor)
Now here is where I'm stuck.....I'm trying to use this info again,
constructing a link, and after much tinkering,
I'm not sure if this is an acceptable use, or I'm just referencing
this wrong.
<a href="/store/catalog_request_frm.asp?foundUs="&strAskedfor>Send me
a Complete Catalog </a><br /><br />
Any assistance would be greatly appreciated!