Adobe COLDFUSION 9 Manual page 64

Developing applications
Hide thumbs Also See for COLDFUSION 9:
Table of Contents

Advertisement

DEVELOPING COLDFUSION 9 APPLICATIONS
The CFML Programming Language
Scope prefix
Prefix required to
reference
(type)
Flash
Yes
Form
No
Local
No
Request
Yes
Server
Yes
Session
Yes
This
Yes
ThisTag
Yes
Thread
The thread name.
Inside the thread
that creates the
variable, you can
also use the
keyword
thread.
Where available
A ColdFusion page or ColdFusion component
called by a Flash client.
On the action page of a form and in custom tags
called by the action page; cannot be used on a
form page that is not also the action page.
Within the body of a user-defined function or
ColdFusion component method, only while the
function executes.
On the creating page and in any pages run
during the current HTTP request after the
variable is created, including in custom tags and
nested custom tags.
To any page on the ColdFusion server. Surround
all code that uses server variables in
blocks.
For one client in one application and one
browser session. Surround code that uses
Session scope variables in cflock blocks.
Within a ColdFusion component or the body of a
user-defined function that was created using the
cffunction tag and place in an object, structure,
or scope. In the containing page, through the
component instance or containing object.
On the custom tag page.
Any code in the request.
Last updated 8/5/2010
Created by
The ColdFusion Client access. You assign a value
to Flash.You can assign values to the Flash.result
and Flash.pagesize variables.
A
or cfform tag. Contains the values of
form
form field tags (such as input) in the form body
when the form is submitted. The variable name
is the name of the form field.
Either of the following:
In the function or method definition, a
keyword in a cfset tag or a CFScript
statement.
Specifying the Local keyword when you
create a variable in the function or method.
Specifying the prefix Request when you create
the variable.
Specifying the prefix Server when you create the
cflock
variable.
Specifying the prefix Session when you create
the variable.
Within the component or function by specifying
the prefix This when you create the variable.
In the containing page, by specifying the
component instance or object that contains the
function as a prefix when you create the
variable.
Specifying the prefix ThisTag when you create
the variable in the tag or using the cfassociate
tag in a nested custom tag.
Using the keyword
thread
as a prefix when you create the variable.
You can create Thread variables only inside the
thread.
59
var
var
or the thread name

Advertisement

Table of Contents
loading

Table of Contents