August 2003
Intermediate to advanced
1140 pages
68h 45m
English
GetClientVariablesList
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>