Name

GetClientVariablesList

Synopsis

                  
                  GetClientVariablesList( )

Returns a list of nonread-only client variables available to the ColdFusion application. In order to use this function, client variables must be turned on in the application’s Application.cfm file. The following example returns the list of client variables available to the application (it assumes an Application.cfm file exists in the application’s root directory and that client variables are enabled):

<cfset Client.Name="Jen">
<cfset Client.ID=123456>
   
<cfoutput>
Client Variables available to this application: #GetClientVariablesList( )#
</cfoutput>

Get Programming ColdFusion MX, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.