Choosing A Client Variable Storage Method - MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual

Developing web applications with coldfusion
Table of Contents

Advertisement

Chapter 12: Using the Application Framework
<!--- This example illustrates CFAPPLICATION --->
<!--- Name the application and enable client management--->
<CFAPPLICATION NAME="SearchApp"
4
CLIENTMANAGEMENT="Yes">
2.
Save the file as
framework.

Choosing a client variable storage method

Once you have enabled client state management, you then have to determine where
you want to store client variables. The system-wide default is for client variables to be
stored in the system registry. But your site administrator can choose to store them
instead in a SQL database or in cookies.
There are two steps to change client variable storage: first, setting a client variable
storage option in the Variables page of the ColdFusion Administrator, and then, noting
the client variable storage location in the CFAPPLICATION tag. See Administering
ColdFusion Server for information on using the ColdFusion Administrator.
You use the CLIENTSTORAGE attribute in the CFAPPLICATION tag to specify where
you want to store client variables, providing one of three values:
Registry
The name of a configured client store
Cookie
If no ClientStorage setting is specified, the default location, as noted in the ColdFusion
Administrator Variables page, is used.
The following example shows how you enable client state management using a sample
database called mydatasource.
To note the client variable storage method:
1.
Open the file
follows:
<!--- This example illustrates CFAPPLICATION --->
<!--- Name the application and enable client management--->
<CFAPPLICATION NAME="SearchApp"
CLIENTMANAGEMENT="Yes"
4
CLIENTSTORAGE="mydatasource">
2.
Save the file as
framework.
Note
Application.cfm
Application.cfm
Application.cfm
Client storage mechanisms are exclusive; when one storage type is in use,
the values set in other storage options are unavailable.
in the root directory of your application
in Studio and modify it so that it appears as
in the root directory of your application
189

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion 4.5

Table of Contents