Question
cfinclude in Application.cfc - variable scope
I am doing a cfinclude in my Application.cfc and the include sets variables in a cfscript.
<cffunction name="OnRequestStart">
<cfinclude template="encryption.cfm">
</cffunction>
The varialbes that are set are known within the Application.cfc but are not available to the .cfm that made the call to the Application.cfc
Is there a workaround?
