Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing parameters w/o using hidden form or session

Status
Not open for further replies.

giahan

Programmer
Sep 1, 2000
139
US
Hi all,

I have a form that has more than 10 fields and I'd like to pass them from ASP pages to pages w/o using session variables (this force user has to have cookies enable browser - and I don't want to do that) and hidden form (b/c too many fields that I have to pass).

I wonder if there is any way to do that.
Any help will be appreciated.
Thanks a lot




GH
 
Weel, that's going to be hard. One thing I can think of is to store it temporarily in a database, an XML-file or just a flat textfile. In the next page, get the values from the recordset again, or read it from the XML or text file.
Make sure you give the records or the file a unique name (to identify which file belongs to which user), and pass this name as a hidden input (this will be the only hidden input :) ) to the next page.
If you ask me, I think it's not a great idea, but it will work. Hope this helps...

<webguru>iqof188</webguru>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top