Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Overview all sessions on application 1

Status
Not open for further replies.

DeRoe

Programmer
Apr 11, 2002
7
0
0
BE
Hi,

I was wondering if it is possible to make an asp page where i get an overview of all the sessionids with its sessionvariables.
Is there an object that I can use to do this ?

Example:
- I have two sessionvariables: Session("var1") and Session("var2").
- Three people are logged onto my website.
- the page would look something like this:
SessionID Session("var1") Session("var2")
User1SessionID User1var1 User1var2
User2SessionID User2var1 User2var2
User3SessionID User3var1 User3var2

I haven't read anything about this possibilty, so it is probably just wishful thinking of me.

Thx for clearing this out for me.
 
Hi,

something like this maybe:

for x = 1 to session.Contents.Count Response.write &quot;Variable = &quot; & session.Contents.key(x) & &quot;, Value = &quot; Response.write session.Contents.item(x) & &quot;<br>&quot; next

Digga

Sharing Knowledge Saves Valuable Time!
 
Digga,

I appreciate your effort.
Your suggestion will only give the session values of the user that browsed the site.
What I need are all the session values of all the users that are browsing the site.

Thx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top