Hi all,

I'm just making the transition from Application.cfm to Application.cfc.
In my Application.cfm I'd normally have a few cfparam's such as the
following:

<cfparam name="url.action" default="" />

I wasn't sure where to put this but I just worked out I can keep it in
the Application.cfc but outside of the functions:

<cfcomponent>
   
        <cfparam name="url.action" default="" />
   
        <cffunction name="onApplicationStart" output="false">
                function stuff in here...
        </cffunction>
   
</cfcomponent>

Is there a better place that I should be putting these types of
cfparams? Any tips?

Cheers

Chris

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~----------~----~----~----~------~----~------~--~---

Reply via email to