response.redirect("test.asp?Name=" & _
Server.HTMLEncode(Name) & _
"&Alias=" _
Server.HTMLEncode(Alias)
??????
If it works, the variables will be in Request.QueryString and not Request.Form though you could use
Request("Name" Request("alias"
U could use the method of John in this way (withowt _ charracter)
response.redirect("test.asp?Name=" & Server.HTMLEncode(Name) & "&Alias="&Server.HTMLEncode(Alias)
or u could use Server.Transfer function...
The transfer method sends all of the information that has been assembled for processing by one .asp file to a second .asp file.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.