Is there any way to write variables directly into the request object of a target page?
something along the lines of
response.form("one"
= 1
response.redirect("one.asp"
then on one.asp
response.write (request.form("one"
)
?
or is the only way to pass variables between asp pages (via ASP) with the session/application objects, or the query string?
Cheyney
something along the lines of
response.form("one"

response.redirect("one.asp"

then on one.asp
response.write (request.form("one"

?
or is the only way to pass variables between asp pages (via ASP) with the session/application objects, or the query string?
Cheyney