On Tuesday, September 10, 2002, at 12:36 , Tony Weeg wrote:
> is there any way (server side, cause I own/maintain the cfmx server)
> for me to see how many/what values there are in memory -- that are
> session/client/application variables?

In CFMX you can do:

<cfscript>
        for ( key in session ) {
                // session[key] is a session variable
        }
</cfscript>

Similarly for client and application scopes (and variables scope).

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to