At 02:16 PM 03/11/2001 -0500, you wrote:
> > I'm wondering if you can't use :
> >
> > <CFSET STRUCTCLEAR(CLIENT)>
>
>No, that won't work. The Client scope isn't a structure. There are, however,
>some functions specifically for dealing with Client variables, such as
>DeleteClientVariable and GetClientVariablesList.
>
>You'll want to be careful using StructClear even with the Session scope, as
>CF creates some Session information that you wouldn't want to delete in CF
>4.5.x.

   Unless of course you truly are trying to get rid of that 
session.  (correct?)

I have been using this code:

<CFLOOP collection=#session# item="tempkey">
         <CFOUTPUT>#tempkey# #structfind(session,  tempkey)#</CFOUTPUT><BR>
</cfloop>


to keep track of session variables during development.  I keep it in the 
root directory of the application.  If I ever want to look at my session 
variables I just run it.  The session information that ColdFusion 4.5.x 
creates is:

session.CFID 5
session.CFTOKEN 87923860
session.SESSIONID appname_cfid_cftoken
session.URLTOKEN CFID=5&CFTOKEN=87923860

  Based on the comments of Dave (Or should I call you Mr Watts?) I imagine 
that these were not created in previous version of CF.  If you wipe out all 
of these, you lose your session.  I've never experimented with wiping out 
either of them individually.



Jeff Houser | mailto:[EMAIL PROTECTED]
AIM: Reboog711  | ICQ: 5246969 | Phone: 860-229-2781
--
Instant ColdFusion 5.0  | ISBN: 0-07-213238-8
Due out 3rd Quarter 2001
--
DotComIt, LLC
database driven web data using ColdFusion, Lotus Notes/Domino
--
Half of the Alternative Folk Duo called Far Cry Fly
http://www.farcryfly.com | http://www.mp3.com/FarCryFly
--
The best advice I can give you is to ignore everything I say


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with 
'unsubscribe' in the body or visit the list page at www.houseoffusion.com

Reply via email to