ColdBox Variable
handlers/home.cfc
<cffunction name="index" output="false" hint="index">
    <cfargument name="event">
    <cfset rc.Test = 'This is a test 123.' />
    <cfset event.setView("home/index")>
</cffunction>
views/home/index.cfm
<cfdump var="#rc#" />
Why is rc.test not showing up in the dump?
 
                        
Without
rcdefined withcfargument, yourrc.testwill be set tovariables.rc.testin your handler.Do this: