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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP varible ***HELP***

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hello, i am creating an asp databse editor and i have created a logon, I have used a "post form" from the html and then check it using an asp page, if the details are correct it transfers to another asp page, because I have used the "post" to hold the varible that the user has put in how do I create a varible that then can be seen by the redirected asp page? (I don't think I have explained this very well)

- The user puts a username into the HTML
- It then posts it to the asp page that check if the users details are correct.
- if they are correct I need to transfer to another page.
- on this redierted page I need to still have the information that the user inputed, How do I do this?



Thanks for your help and sorry about the crappy explanation!

Adrian
 
session("username") = request.form("username")

the session variable "username" will be available on all pages in your site.

nick bulka

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top