User Guide

Table Of Contents
68 Chapter 3: Using ColdFusion Variables
CGI No On any page. Values are
specific to the latest browser
request.
The web server. Contains the server
environment variables that result
from the browser request.
Cffile Yes Following an invocation of
cffile.
A
cffile tag.
Cookie No For one client in one or more
applications and pages, over
multiple browser sessions.
A
cfcookie tag. You can also set
memory-only cookies by specifying
the prefix Cookie when you create
the variable.
Client No For one client in one
application, over multiple
browser sessions.
Specifying the prefix Client when
you create the variable.
Session Yes For one client in one
application and one browser
session. Surround code that
uses Session scope variables
in
cflock blocks.
Specifying the prefix Session when
you create the variable.
Application Yes For multiple clients in one
application over multiple
browser sessions. Surround
code that uses application
variables in
cflock blocks.
Specifying the prefix Application
when you create the variable.
Server Yes To any page on the
ColdFusion server. Surround
all code that uses server
variables in
cflock blocks.
Specifying the prefix Server when
you create the variable.
Flash Yes A ColdFusion page or
ColdFusion component called
by a Flash client.
The ColdFusion Client access. You
assign a value to Flash.You can
assign values to the Flash.result and
Flash.pagesize variables.
Arguments No Within the body of a user-
defined function or
ColdFusion component
method.
The calling page passing an
argument in the function call.
Scope
prefix
(type)
Prefix
required to
reference
Where available Created by