Skip to main content
Inspiring
January 24, 2007
Question

I want to see the username on a page from login session var

  • January 24, 2007
  • 2 replies
  • 251 views

I want to see the username (from login session var) on a subsequent
page but I cannot find a way, either in experminting, newgroup, googel,
or books.

Any suggestions?

I am using asp/vbscript.
--

This topic has been closed for replies.

2 replies

Inspiring
January 24, 2007
Thanks for getting me started. The final thing that worked and got the
user name displayed on the page

<%
response.write(Session("Username"))
%>

--

Inspiring
January 24, 2007
Try summat like : <%=session("username")%> where you want it to appear and use whatever Var username is set to..