That is the "variables" scope which is the "default" scope for variables
created with <CFSET> or in <CFSCRIPT> if another scope is not specified.

<CFSET myvar="Y">
<CFSET request.myvar="X">

<CFOUTPUT>#variables.myvar#</CFOUTPUT would produce Y.
<CFOUTPUT>#request.myvar#</CFOUTPUT would produce X.

DC
----- Original Message -----
From: "Robert Everland" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 08, 2001 09:14
Subject: Request Scope


> Is the requesy scope the scope that is used when say I set something
> in the document <Cfset here = "there"> so if I wanted to refer to that in
> the document I would use <cfoutput>#request.here#</cfoutput> or is this a
> different scope?
>
> Robert Everland III
> Web Developer
> Dixon Ticonderoga
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to