I wish to reload a page and on doing so I save the variables that they entered (two dates) add the as a query portion of a url. I then request.querystring to get the data but I am unclear how I can add the info to the corresponding textboxes. Any suggestions?? Here is what I am using in VBScript
d1 = Request.QueryString("Date1"
if d1 <> "" then
form.Date1.value = d1
else
Date1 = Request.Form("Date1"
end if
Thanks for any help offered
Joanne
d1 = Request.QueryString("Date1"
if d1 <> "" then
form.Date1.value = d1
else
Date1 = Request.Form("Date1"
end if
Thanks for any help offered
Joanne