ColdFusion CALLER Scope Dependent On Invoking Parent, Not Markup Parent

<!--- Check to see which mode the tag is running in. --->
<cfswitch expression="#THISTAG.ExecutionMode#">
 
	<cfcase value="End">
 
		<!---
			Dump out the contents of this tag's THISTAG and
			the VARIABLES scope.
		--->
		<cfdump
			var="#THISTAG#"
			label="THISTAG Execution Mode: END"
			/>
 
		<cfdump
			var="#VARIABLES#"
			label="VARIABLES Execution Mode: END"
			/>
 
	</cfcase>
 
</cfswitch>

For Cut-and-Paste