<html>
<head>
<link href="mmres://user_interface_reference.css" rel="stylesheet" type="text/css">
<title>GETCLIENTVARIABLESLIST</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
   <div id="Description">
   <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
      <tr> 
         <td valign="top" class="name">GETCLIENTVARIABLESLIST</td>
         <td valign="top" nowrap class="compatibility">&nbsp;</td>
      </tr>
      <tr>
         <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
      </tr>


    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Description</span>
<p>
Finds the client variables to which a page has write access.
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Returns</span>
<p>
Comma-delimited list of non-read-only client variables, as a string.
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Category</span>
<p>
List functions, Other functions
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Function syntax</span><pre>GetClientVariablesList()
</pre>    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">See also</span>
<p>
DeleteClientVariable
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Usage</span>
<p>
The list of variables returned by this function is compatible with ColdFusion list functions.
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">Example</span><pre>&lt;!--- This example is view-only. ---&gt;
 
&lt;h3&gt;GetClientVariablesList Example&lt;/h3&gt;

&lt;p&gt;This view-only example deletes a client variable called &quot;User_ID&quot;, if it 
exists
in the list of client variables returned by GetClientVariablesList().
&lt;p&gt;This example requires the existence of an Application.cfm file and that 
client
management be in effect.
&lt;!---
&lt;cfset client.somevar = &quot;&quot;&gt;
&lt;cfset client.user_id = &quot;&quot;&gt;
&lt;p&gt;Client variable list:&lt;cfoutput&gt;#GetClientVariablesList()#&lt;/cfoutput&gt;

&lt;cfif ListFindNoCase(GetClientVariablesList(), &quot;User_ID&quot;) is not 0&gt;
&lt;!--- delete that variable 
   &lt;cfset temp = DeleteClientVariable(&quot;User_ID&quot;)&gt;
   &lt;p&gt;Was variable &quot;User_ID&quot; Deleted? &lt;cfoutput&gt;#temp#&lt;/cfoutput&gt;
&lt;/cfif&gt;

&lt;p&gt;Amended Client variable list:&lt;cfoutput&gt;#GetClientVariablesList()#
 &lt;/cfoutput&gt;
---&gt;
</pre>
         </td>
      </tr>
   </table>
   </div>

  </body>
</html>
