This is from the ColdFusion Quick Reference Guide

"Request variables store data that pertains to the processing of a single
page request. Request variables allow you to store data in a structure that
can be passed to nested tags, such as Custom Tags, and processed once.

Set a Request variable to provide information to nested tags.  The Request
variable is set as follows:
<CFSET Request.field_name1 = "value">
<CFSET Request.field_name2 = "value">
<CFSET Request.field_name3 = "value">

Each nested tag can access the variable with the <CFOUTPUT> tag:
        <CFOUTPUT>#Request.field_name1#</CFOUTPUT>"


-----Original Message-----
From: Mark Johnson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 24, 2000 1:55 AM
To: CF-Talk
Subject: Mysterious Request Scope


I have seen a few references to the REQUEST scope by many on this list.  Is
this a standard scope that is available to all CF pages?  What is stored in
this structure? Is there any information on it in the CF documentation?
When does it get built?

Mark Johnson
-----------------------
Senior Cold Fusion Developer
Cardinal Communications

----------------------------------------------------------------------------
--------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to