Click to See Complete Forum and Search --> : Write to header
OliverAshford
07-09-2003, 05:22 AM
I want to be able to write to the header in the same way that a 'post' form does. Basically I want to use:
Request.Form("Variable")
when I havent used a form to put the data there.
OliverAshford
07-10-2003, 03:28 AM
Thanks for your reply.
What would you recomend as the next quickest, most efficient way to pass a string between pages? A session variable? Thanks again for your help.
rdoekes
07-10-2003, 07:56 AM
either a session variable or a querysting. Querystring only if the total string is not too big.
OliverAshford
07-10-2003, 08:24 AM
Thanks to everyone,
I have decided to use a Session Variable.
Hi dear
There is logic when to use what method usually querystring is good but in some cases session variables are used remember when ur variables is not changing so quickly and u dont have traffic prolem use session otherwise use querystring, but query string has some character limitations.
and always use rquest.querystring or request.form for ur web performance