> What are people doing with all the functionality that "WAS" 
> in App.cfm that now goes in App.cfc? cfinclude? is that 
> recommended?

Different parts of that functionality fit well within different functions in
Application.cfc. For example, you might have something that looks like this:

<cfif not IsDefined("Application.foo")>
        ... set a bunch of Application variables ...
</cfif>

That fits nicely within onApplicationStart, without the bother of needing
conditional logic. For another example, you might have a bunch of local or
Request variables used to simulate constants, and those fit nicely within
onRequestStart.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email to 
[email protected] with the words 'unsubscribe cfcdev' as the subject of the 
email.

CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting 
(www.cfxhosting.com).

An archive of the CFCDev list is available at
www.mail-archive.com/[email protected]

Reply via email to