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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Count current session?

Status
Not open for further replies.

wer25

Programmer
Jan 16, 2001
10
0
0
RU
How to see in CFAdministrator the information
on the current sessions, how many them, specification?
Thank
 
the variables that can be output to the page through the show variables option in the administrator are: cgi, form, url, local variables and cookies;

if you want to see the session variables and the corresponding values, you will have to loop through the session collection; use the following snippet:

<cfloop list=&quot;#StructKeyList(session)#&quot; index=&quot;i&quot;>
<cfoutput>session.#i#: #Evaluate(&quot;session.#i#&quot;)#<br></cfoutput>
</cfloop> Sylvano
dsylvano@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top