Using Shared Scope Variables
As I mentioned in the introduction, the Web is a stateless environment. ColdFusion addresses this problem by providing five variable scopes you can use to maintain state within your application: application, client, cookie, session, and server. These are known as shared variable scopes because the variables you set within them can exist from template to template, in spite of the stateless nature of the Web. This allows you to build applications that can share data across multiple templates without having to pass the values via form fields or URL variables.
Here’s an overview of the types of shared scope variables you can use in your ColdFusion applications:
- Application
Application variables define application-wide settings for your application, such as data-source names and other constants. Application variables are stored in the server’s RAM and are most often defined in the Application.cfm template. Application variables are available to all users accessing the named application and are often referred to as global variables. Application variables must always be referenced using the
application
prefix, as inapplication.
variable_name
. By default, a single predefined application variable is available:application.ApplicationName
application.ApplicationName
returns the name of the application as defined in thename
attribute of thecfapplication
tag.- Client
Client variables store values associated with a particular user across multiple sessions. An ...
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.