Closed Thread Icon

Topic awaiting preservation: ASP pass variable (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=12494" title="Pages that link to Topic awaiting preservation: ASP pass variable (Page 1 of 1)" rel="nofollow" >Topic awaiting preservation: ASP pass variable <span class="small">(Page 1 of 1)</span>\

 
slim___shady
Nervous Wreck (II) Inmate

From: canada
Insane since: Aug 2002

posted posted 10-28-2002 04:23

I have a login page. after logging in the username is passed to the second page in a variable aaa. The second page accepts this variable like this and it's working.

bbb=request("aaa")

Now aaa is bbb

How do I pass bbb to a third page?

i have something like this in the second page. What's the code for passing a variable to another page?

<a href="third.asp?bbb=ccc">third page</a>

I need to be able to display the username in the third page.

Lurch
Paranoid (IV) Inmate

From: Behind the Wheel
Insane since: Jan 2002

posted posted 10-28-2002 05:26

for logins i'd use cookies or sessions... i don't quite understand your question though - to pass the variable to the third page you could do the same thing you did on the second page if you wanted...

--Lurch--

stinx
Bipolar (III) Inmate

From: London, UK
Insane since: Apr 2002

posted posted 10-28-2002 13:43

<a href="third.asp?bbb=<%=bbb%>">third page</a>

« BackwardsOnwards »

Show Forum Drop Down Menu