|
-
Jul 4th, 2000, 06:27 AM
#1
Thread Starter
Addicted Member
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")
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|