Skip to main content
Inspiring
November 1, 2006
Question

Site Wide Session Variables

  • November 1, 2006
  • 2 replies
  • 353 views
Is it possible to create a session variable that can be viewed on everyone
one the site. Normally I session the user's username and site privledge, but
that can happen for multiple users at anyone time (i.e. Session.username).
Is it possible to create a session that can be used / viewed by everyone
whos on the site?

The goal is to set people to a sitewide session variable to show whos online


This topic has been closed for replies.

2 replies

Participating Frequently
November 1, 2006
You can't do it with a session variable, but you could have an application scope array containing the user names (i.e. application.username).
Participating Frequently
November 1, 2006
There's APPLICATION scope variables, which are visible to everyone on the site.

SESSION variables are only visible to that session.