ASP - displaying information from a form on another page

Associate
Joined
25 Sep 2008
Posts
6
I'm looking for an explanation of how to process user information from one page and to display the info on another page using ASP. Would like to find out how to do this so i can find out how to display collected information on a page using a print style sheet.

Any assistance would be gratefully appreciated , thanks.
 
Also lookup request.querstring too, useful for passing things like product IDs - buit remember this way anyone can see what is being passed from page to page, so be careful. :) E.g. varProductID = Request.QueryString("ID").

Also when passing form info accross multiple pages (say a 3 page signup form) - depednig on what your doing exactly - either insert the info into the database at each stage or use hidden form fields (again, people in the know can see these values by viewing the page source, so use sparingly) .

Could also use sessions to store certain info (again, use sparingly) E.g. varUser = Session("User")
 
Back
Top Bottom