It depends on how your login system works, but you could create some session variables on the checklogin page. eg.
If login successfull.... grab their details
Session("FirstName") = objRS("FirstName")
Session("LastName") = objRS("LastName")
Response.Redirect "main.asp"
You could then use this throughout the session like so on your asp pages.
Logged In As: <%= Session("FirstName") & " " & Session("LastName") %>
HTH
TDA
|