<!--- Check to see which mode the tag is running in. ---> <cfswitch expression="#THISTAG.ExecutionMode#"> <cfcase value="Start"> <!--- Now, we are going to explicitly call the child tag (rather than rely oun our calling page to include it in the markup). ---> <cf_child /> </cfcase> <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>