>I'm trying to kill all the client variables in one clean sweep but can't
>seem to get it right.  I kind of worked out how to do one as:
>
>
><cfset temp = DeleteClientVariable("user")>
>
>
>But how do I just go through all current client variables and delete
>them all?
>
>
>Is it something like?
>
><cfset temp = "DeleteClientVariable("#GetClientVariablesList()#")">

Close. Try this. It's not exactly a clean sweep but it works. :)

<cfloop index="i" list="#GetClientVariablesList()#">
<cfset temp = DeleteClientVariable(i)>
</cfloop>
--

Bud Schneehagen - Tropical Web Creations, Inc.

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Web Based Solutions / eCommerce Development & Hosting
http://www.twcreations.com/ - http://www.cf-ezcart.com/
Toll Free: 877.207.6397 - Local & Int'l Phone/Fax: 386.789.0968
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to