Dan,
I think you are after session variables!
For example to store the users name in a session variable when they log in use:
session("userName") = rs("userName")
where rs is the record set you are checking the name and password against.
To display the user name from a session variable you only have to
<%= session("userName")%>
If this does not answer your question, please give us some more information.
Rod
|