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 ??
Printable View
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")%>">Quote:
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 ??
'in changesession.asp
<%
session("friend") = request.querystring("friend")
response.redirect "home.asp"
%>