PDA

Click to See Complete Forum and Search --> : parameter passing


vbsquare
Jul 4th, 2000, 06:27 AM
There are several ways in which you could do this. Firstly, you could use the querystring like this:

<a href="mypage.asp?username=sam">

or you could use the session object:

Session("Username") = "sam"

You would read these values in your other ASP pages in the following ways:

sUsername = Request.Querystring("username")

or

sUsername = Session("Username")