[thelist] ASP - actions taken before redirect? (again)

Scott Dexter sgd at ti3.com
Thu Sep 27 17:45:16 CDT 2001


> 
>  dim strComments
>  strComments = Request.Form("comments")
>  Response.Redirect("test2.asp")

you're never passing the variable to test2.asp

>  strComments = Request.Form("comments")

-- you've not added it to the query string er anything


in test1.asp, do

Response.redirect("test2.asp?comments="&Server.URLEncode(strComments))

should get it for ya
sgd




More information about the thelist mailing list