Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

LEGEND ,
Jan 24, 2007 Jan 24, 2007

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.
--

TOPICS
Server side applications
253
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 24, 2007 Jan 24, 2007
Try summat like : <%=session("username")%> where you want it to appear and use whatever Var username is set to..
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 24, 2007 Jan 24, 2007
LATEST
Thanks for getting me started. The final thing that worked and got the
user name displayed on the page

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

--

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines