|
-
Oct 16th, 2001, 03:40 PM
#1
Thread Starter
Lively Member
Linkproblem
When a link is clicked I want session("friend")=rs("alias") and then the user should be moved to home.asp.
How do I do this ??
-
Oct 18th, 2001, 10:02 AM
#2
Frenzied Member
Re: Linkproblem
Originally posted by Abel
When a link is clicked I want session("friend")=rs("alias") and then the user should be moved to home.asp.
How do I do this ??
<a href="changesession.asp?friend=<%Response.Write rs("alias")%>">
'in changesession.asp
<%
session("friend") = request.querystring("friend")
response.redirect "home.asp"
%>
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
|