Application.cfc effectively replaces the <cfapplication> tag. This tag:

<cfapplication name="myapp" sessionmanagement="yes" sessiontimeout="10">

becomes the following code in the pseudo-constructor area of
Application.cfc (i.e., immediately after the opening <cfcomponent>
tag):

<cfset this.name = "myapp" />
<cfset this.sessionmanagement = "yes" />
<cfset this.sessiontimeout = "10" />

See the following documentation:

Reference Manual:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/00000693.htm

Developing ColdFusion Applications:

http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001115.htm
http://livedocs.macromedia.com/coldfusion/7/htmldocs/00001123.htm


On Wed, 23 Feb 2005 17:03:43 +0800, James Holmes
<[EMAIL PROTECTED]> wrote:
> Does anyone use the THIS scope any more? Having just converted some nasty
> old (CF 6.0) CFCs using THIS in external code and all sorts of other bad
> things to really nice, new, VARIABLES scope code using getters and setters,
> I can't see a use for THIS, except for the return in an init() method.
> 
> Does anyone have a use for THIS that I am missing?
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196064
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to