Forum Moderators: open

Message Too Old, No Replies

response.redirect questions

response.redirect post

         

framedshare co uk

10:01 am on Aug 20, 2003 (gmt 0)



I have a scrip running and I would like to send the data back to the page with the a post so that the data is not appended to the URL i.e I would like to hide the data from the users. I have thought about using a cookie and session variables but would prefere it if I could just post the data back from the server rather than what I am currently using:

response.redirect("../somepage.asp?name=somenae&var2=somevar2")

thanks

mattglet

4:13 am on Aug 21, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



maybe just use a form method = "post", and request.form the data at the beginning of the page?

-Matt

RossWal

9:12 pm on Aug 21, 2003 (gmt 0)

10+ Year Member



You might want to look into server.transfer. It will leave the client's url whatever it was (since it doesn't bounce back to the client) and run the server side code on the page you're transferring to. That page may or may not send a new http stream back to the client.

Ross