A ColdFusion custom tag returns the following variables:
ThisTag.ExecutionMode |
A custom tag can set a Caller variable to provide information to the caller. Set the Caller variable as follows:
<cfset Caller.variable_name = "value"> |
The calling page can access the variable with the cfoutput tag, as follows:
<cfoutput>#variable_name#</cfoutput> |