Michael Dinowitz Application.cfc Presentation At NYCFUG - Past, Present, Future

Posted June 12, 2007 at 3:28 PM

Tags: ColdFusion

ColdFusion 8 is in beta but are you ready for it? Have you mastered the features of ColdFusion 7? This Tuesday night, June 12th, Michael Dinowitz will be presenting on the topic of "Application.cfc and how it can be used beyond what you think" at the New York ColdFusion User group.

The presentation will go over each portion of the Application.cfc component, a feature of ColdFusion 7 designed to contain and control your application. It was designed as a replacement and major enhancement of the application.cfm and onrequestend.cfm templates as well as the cfapplication tag. Starting with creating a simple application structure, Michael will walk you through each of the components methods, how they are used, how they can be used beyond what they were designed for and more. In addition, ColdFusion 8 features such as onMissingTemplate() will be covered including a demonstration of using this for some really nice SEO enhancements.

Refreshments will be provided by our sponsor, Web Marketing Associates, so please rsvp so we know how much to get. Also, RSVPs will go into a raffle for the latest swag from Adobe including an Adobe mini laser mouse. You know you want it so let us know your coming.

When? Tuesday, June 12, 2007, 6:30 PM
Where? NYU Medical Center, 550 1st Avenue, Room: Coles 101


 
 
 

 
ColdFusion Application.cfc Presentation  
 
 
 

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Jun 12, 2007 at 4:52 PM // reply »
24 Comments

lol onMissingClothes()


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »
Nov 20, 2009 at 5:07 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, I have seen tidbits about the way Railo handles session. I can understand that it lazy-loads sessions, but I also think that I might make some things more complicated. For example, often tim ... read »