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 session variable

Status
Not open for further replies.

kimigayo

Programmer
May 9, 2001
2
JP
I am making a little application that involves with 5 people. In here I need to pass a certain information within this group. The page has 3 input fields. One of them will be passed until the last 5th person accesses the site and session variable is ready to expire. The form value will be passed by email to next person and this process takes place 5 five times. Can someone tell me the best way out.
 
I suppose

http:...../result.asp?sessionId=iNumOfPerson

if iNumOfPerson = person then
Session("idNumOfPerson") = person
end if

...or something
 
I think your problem is the session variable...each time a person logs on that is a new session...it would seem by definition if 2 different people log on they could not get the same session variable...now...an application variable would last until you destroy it. no matter who logged on or how long it has been. You may want to try that and then on the last persons page have a script that kills the variable

bassguy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top