Variables in the REQUEST scope are only available ("alive") for that particular HTML 
PAGE REQUEST, just as local variables are only available for a single template.  

Think of them as local variables that are available for the entire chain of cascading 
<CFINCLUDES>  and <CFMODULE> calls that you make with any single HTML page request.

They can be used in a very similar fashion to APPLICATION scope variables, since they 
can be accessed across the entire web site (in fact, they can be accessed across 
different   <CFAPPLICATIONS>, making them more like SERVER scope variables.)   They 
can be accessed across  <CFMODULE> or  custom tag calls, unlike page variables (scope 
= VARIABLES)

However, they are not saved to memory, and are not persistent.

They were created to allow CF integration with Spectra, but they are great for other 
purposes.

Advantages:
        Application/Server wide (cross module access)
        Don't need to be <CFLOCKED>


ReqeuAt 01:30 PM 9/22/00 -0400, David Nesbitt wrote:
>----- Original Message -----
>From: "Nichols, Robert H." <[EMAIL PROTECTED]>
>
>> Use the REQUEST scope.  REQUEST is only valid from one form to the next
>> form, so the information should carry over.
>
>Where can one find out more information on the variable  "REQUEST" scope. A
>quick search of the CF docs didn't find anything. Is this a Fusebox specific
>scope? I've been a little out of the loop lately and might have missed any
>discussion on the subject.
>
>Thanks
>
>
>: David Nesbitt
>: Web Production Specialist (ColdFusion)
>: (e) [EMAIL PROTECTED]
>
>
>------------------------------------------------------------------------------
>To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body. 


====================================================
Douglas M. Smith - Database Architect/Web Integration Specialist
====================================================
TeraTech Inc - Tools for Programmers(tm)
VisualBasic, Web (ColdFusion and ASP), Math and Statistics, 
Access, SQL, programming tools & consulting
100 Park Ave, Suite 360, Rockville MD 20850 USA 
Voice: 301-424-3903, Fax: 301-762-8185 
http://www.teratech.com
====================================================
Email: [EMAIL PROTECTED]
Mobil/Cell Phone: (240) 601-5520
ICQ: 41044319
====================================================
Do you need a group calendar or scheduler?
How about a free ColdFusion Tag and Function Reference?
Go to http://www.teratech.com/freestuff.cfm
====================================================

------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to