|
he net,
On the login page you can use two things.
1. You can set a cookie with the users Username iin it.
<%
dim strEmail
Response.Cookies("MyCookie")("username")="ACJavasc ript";
Response.Cookies("MyCookie").Expires = Date +1; 'one day
strUsername=Request.Cookies("MyCookie")("username" );
%>
Welcome <%=strUsername%>
2. You can use a session variable.
<%
'really basic look
Session("MySession")="ACJavascript"
%>
Welcome <%=Session("MySession")%>
Good luck!
__________________
Please login or register to view this content. Registration is FREE - 100 Satisfied Customers - Custom Programming and Web Development
Last edited by ACJavascript; 11-28-2004 at 01:25 PM..
|