This dialog box defines a ColdFusion client variable as a source of dynamic content for the page.
For example, if you want to access the information in the Client.LastVisit
ColdFusion variable, enter LastVisit
.
Client variables are variables created in the code to associate data with a specific client. Client variables maintain the applications state as the user moves from page to page within the application, as well as from session to session.
Client variables can be user-defined or built-in. The following table lists the built-in ColdFusion client variables:
Variable |
Description |
---|---|
Client.CFID |
An incremental ID for each client that connects to the server. |
Client.CFTOKEN |
A randomly generated number used to uniquely identify a particular client. |
Client.URLToken |
A combination of CFID and CFTOKEN to be passed between templates when cookies are not used. |
Client.LastVisit |
Records the timestamp of the last visit made by a client. |
Client.HitCount |
The number of page requests tied to a single client (tracked using CFID and CFTOKEN). |
Client.TimeCreated |
Records the timestamp when CFID and CFTOKEN were first created for a particular client. |
The newly defined ColdFusion client variables appear in the Bindings panel.