Skip to main content
Ben Nadel at Scotch On The Rock (SOTR) 2010 (London) with: RichardCooper
Ben Nadel at Scotch On The Rock (SOTR) 2010 (London) with: RichardCooper ( @seopo )

Advanced ColdFusion Custom Tags With Ben Nadel (Video Presentation)

By on
Tags:

The following video and slide show is my presentation: Advanced ColdFusion Custom Tags. While the slide show covers the entire breadth of ColdFusion custom tags, from the basics to the advanced, the video demonstrates only the advanced aspects covered in my CFUNITED version of the presentation. Custom tags are the unsung heroes of the ColdFusion world and I hope that in this presentation I can demonstrate the ways in which they can be used to create more natural, more elegant, and ultimately more powerful solutions to your everyday business problems.

In the presentation, I keep bringing up ColdFusion components because it has been my observation that in the community at large, it is believed that ColdFusion components are a replacement for the "outdated" usage of Custom Tags. What I want to get across to you is that these are not competing technologies in any way; and, in fact, ColdFusion components and custom tags can work together, synergistically, to create best-of-breed solutions.

Click here to download the presentation slides and the code demonstrations.


 
 
 

 
Advanced ColdFusion Custom Tags With Ben Nadel (Video Presentation)  
 
 
 

NOTE: I recorded the video at a very large dimension - my apologies for the scrolling.

On a personal note, this my first presentation given at a conference, so a big thanks to everyone who encouraged me and gave me excellent feedback (especially you Simon Free).

Reader Comments

3 Comments

Thanks Ben for posting your preso, I agree that alot of people don't appreciate how useful and relevant custom tags can still be in this crazy grande cfc with oo icing thanks world :P

The best example of advanced tag use in the wild I have seen would have to be Mango Blog with it's custom tag templating and event system. Complex and very cool stuff.

Later, Jo.

7 Comments

Thanks for putting this out there. I haven't done much with custom tags for the last few years but they are still useful and pretty great for portability reasons!

167 Comments

@Ben, I'm trying to figure out what the difference is between a custom tag and calling a function inside a CFC.

Right now we have zero CT's. Is it leaner to simply put
<cf_GetNewAccount Variable="Username"> than to <cfset variable=account.newAccount(Username)>? (Sorry if the coding is wrong)

15,674 Comments

@Randall,

Typically, application business logic is being packaged inside of your ColdFusion components these days. As such, for your example, I would go with a CFC.

ColdFusion custom tags are great for more display logic, domain specific languages (DSL - basically a fancy way to abstract the way things are "described"), and for creating control flow (ie. augmenting the core language in a way that is not tied to any particular application).

167 Comments

Any performance hit between Tags and CFCs? Have you ever tested?

I'm just imagining it needing to read an /additional/ file from disk (versus possibly having a CFC already loaded in memory). Or is it a moot point after the first go 'round?

15,674 Comments

@Randall,

ColdFusion will try to cache all "Templates." There's not that much difference between a template that ends in CFC and a template that ends in CFM. That said, as long as you have your template cache turned on, there shouldn't be disk overhead for either case.

Comparing the performance of the two is someone of a moot point as custom tags do different things than components. Really, you just want to pick the right tool for the job.

33 Comments

Hi Ben,

Just wanted to ask you like can we use application scoped variables inside a custom tag page or we can only use request scope variables?

I believe in love. I believe in compassion. I believe in human rights. I believe that we can afford to give more of these gifts to the world around us because it costs us nothing to be decent and kind and understanding. And, I want you to know that when you land on this site, you are accepted for who you are, no matter how you identify, what truths you live, or whatever kind of goofy shit makes you feel alive! Rock on with your bad self!
Ben Nadel