Testing CALLER.Scope.Value And Caller[ "Scope.Value" ] In ColdFusion Custom Tags

<cfoutput>
 
	<p>
		Dot Notation:
	</p>
 
	<p>
		REQUEST .... #CALLER.REQUEST.Value#<br />
		VARIABLES .... #CALLER.VARIABLES.Value#<br />
		COOKIE .... #CALLER.COOKIE.Value#<br />
	</p>
 
	<p>
		Array Notation:
	</p>
 
	<p>
		REQUEST .... #CALLER[ "REQUEST.Value" ]#<br />
		VARIABLES .... #CALLER[ "VARIABLES.Value" ]#<br />
		COOKIE .... #CALLER[ "COOKIE.Value" ]#<br />
	</p>
 
</cfoutput>
 
 
<!--- Exit out of tag. --->
<cfexit method="exittag" />

For Cut-and-Paste