ColdFusion Tutorial Categories
  • Image Manipulation Using Image.CFC
    This tutorial will show you how to use Image.cfc. I demonstrate several examples of how you can create Image verification for forms, scale down images, watermark images, add text to images, and performing multiple operations to an image.
    Difficulty: Intermediate | Author: daddyFL | Views: 26,972 | Posted Date: Thursday, August 31, 2006
  • Dynamic time and date for your pages
    Have you seen the "www.EasyCFM" page closely? On the main page, top right, there is a place for time, and top left a place for day-date. Ever wonder how Pablo does it ? This is not a ColdFusion tutorial. Its JavaScript.
    Difficulty: Beginner | Author: Anang A Phatak | Views: 20,306 | Posted Date: Wednesday, January 5, 2005
  • Improving Application Performance (Part 2)
    Not all queries can be saved as an application variable. For Queries that do not meet the checkpoints in my previous tutorial there is another way to improve performance. Query Caching is another way to save data and eliminate unnecessary queries. This is for queries that are more dynamic in nature.
    Difficulty: Intermediate | Author: Mark Aplet | Views: 16,561 | Posted Date: Monday, January 12, 2004
  • Improving Application Performance
    One thing I am always trying to do is speed up my applications. As my site grows in size and complexity I find that I spend a fair amount of time re-coding pages because of a new technique I just learned. I wish I had learned about these techniques long before, and thereby allowing me to create more effective code. In this tutorial I'll try to explain some problem areas that I have identified, and some of the things you can do to improve performance.
    Difficulty: Intermediate | Author: Mark Aplet | Views: 29,337 | Posted Date: Monday, January 12, 2004
  • Random String/Password Generation
    This is a custom tag I wrote that generates a random string at the set number of characters using the characters you decide on Alpha AlphaNumeric or Numeric Uppercase, lowercase, mixed case... It will create a variable that you name as you wish and call however you'd like. It is a small example of how to create a custom tag and will hopefully send someone in the right direction. It is also fully functional and has come in handy quite a few times. Enjoy and as always.. Have Fun!
    Difficulty: Beginner | Author: Bobby Hartsfield | Views: 25,809 | Posted Date: Tuesday, August 12, 2003
  • CFSCRIPT Intro
    An introductory look at CFSCRIPT. Rules, some basic syntax, and a couple of examples of loops and conditional processing.
    Difficulty: Beginner | Author: Charlie Griefer (CJ) | Views: 47,011 | Posted Date: Saturday, January 18, 2003
  • Save your visitor's clickstreams
    A nifty little custom tag that will allow you to save a visitor's clickstream through your site, as well as display it back to them (with links). Did I really just say 'nifty'?
    Difficulty: Intermediate | Author: Charlie Griefer (CJ) | Views: 25,650 | Posted Date: Monday, June 16, 2003
  • Nested Custom Tags
    This tutorial explains how to use nested custom tags in ColdFusion. It also presents one 'basic quiz' in CF MX where nested custom tags show an interesting behavior
    Difficulty: Intermediate | Author: Claudio Dias | Views: 19,144 | Posted Date: Monday, June 23, 2003
  • Boost your applications performance with cached CFCs
    When using the cfinvoke tag or the CreateObject function on your pages, it adds CPU time to process the requests to load all of those objects into memory. Under load this can make quite a difference in your page response times. One way to get around it is to put those objects into a shared scope so they only get instantiated once. This will save memory and CPU time on your server.
    Difficulty: Advanced | Author: Derrick Anderson | Views: 25,573 | Posted Date: Thursday, August 31, 2006
  • Simplify form development and processing
    Have you ever wanted to have a quick way to process just about any form in coldfusion? If you can apply some simple standards to your database and to your form elements, then this tutorial makes it easy for you to rapidly develop and deploy your application. Note, some developers will frown on it because it does not draw on stored procedures where efficiency can be gained in your application, but sometimes you just want to get it working - you can let the hard core programmers use the prototype to make it work more efficiently. They will like you for using less code.
    Difficulty: Intermediate | Author: Doug Hyde | Views: 7,763 | Posted Date: Thursday, March 22, 2007
  • Simply form processing through a single template
    Have you ever wanted to have a quick way to process just about any form in coldfusion? Whether it is by direct submission of a form by submit or through AJAX, you can apply some simple standards to your database and to your form elements, then this tutorial makes it easy for you to develop and deploy forms in your application.
    Difficulty: Intermediate | Author: Doug Hyde | Views: 19,875 | Posted Date: Saturday, March 24, 2007
  • E-mail Scramble
    This simple CFC scrambles your e-mail into ASCII-equivalent characters, reducing the chance of your e-mail being phished by bots and spiders significantly.
    Difficulty: Intermediate | Author: David Patricola | Views: 10,978 | Posted Date: Sunday, July 9, 2006
  • Validating Multiple Email Addresses.
    The Tutorial is reagarding the checking of the multiple email addresses. This is a server side coding using the ReFind and the Replace Functions.
    Difficulty: Beginner | Author: Gurpreet Singh Randhawa | Views: 12,058 | Posted Date: Friday, April 6, 2007
  • How to create a dynamic sitemap for a database-driven website
    This tutorial demonstrates how to create a dynamic sitemap for a database-driven website with ColdFusion
    Difficulty: Advanced | Author: Ikramy Ghidan | Views: 16,248 | Posted Date: Tuesday, May 31, 2005
  • Generate a unique number from current date and time
    This is a function that generates a 14-digits unique number from the current date and time. You can use this number as a unique ID for your database records.
    Difficulty: Intermediate | Author: Ikramy Ghidan | Views: 14,444 | Posted Date: Tuesday, May 31, 2005
  • Meta Tag Management with ColdFusion
    Need a quick way to manage your meta information? Frustrated with tags mistakenly deleted by page updates? This handy script will help you keep track of and easily update your meta data.
    Difficulty: Beginner | Author: Jason Bartholme | Views: 10,021 | Posted Date: Wednesday, March 29, 2006
  • Simple Image Manipulation Tool
    This tutorial will tech you how to check if a image has been resized, if it has leave it alone, if it hasnt resize it and add a _sm prefix on the begining of the filename.
    Difficulty: Beginner | Author: Justin Gothier | Views: 9,283 | Posted Date: Thursday, December 15, 2005
  • Fusebox 4.1 For Beginners Part 1
    This four part series will introduce cf beginners to the fusebox frame work and help them get a grasp of this powerful technology.
    Difficulty: Beginner | Author: Craig | Views: 41,716 | Posted Date: Monday, July 4, 2005
  • Dynamic Application Variables

    Dynamically Create and Manage Application variables and set them on the fly in your applications. This tutorial will work best for situations that involve reusing the same application architecture for multiple sites, if application variables are changed often or if application variables wish to be changed without going into the code.


    Difficulty: Intermediate | Author: Jeff Mendelsohn | Views: 4,064 | Posted Date: Tuesday, December 1, 2009
  • Remember the Cow: Recursion in ColdFusion (one line breadcrumbs and sitemaps!)
    This tutorial digs deep into recursion in ColdFusion, and provides practical solutions to real-world development issues: breadcrumbs, sitemaps, and select box options.
    Difficulty: Intermediate | Author: Matt Quackenbush | Views: 16,647 | Posted Date: Monday, August 21, 2006
  • The better way to handle session variables
    You can use these simple loops in place of many lines of code to clear out or delete session variables
    Difficulty: Beginner | Author: Nathan Miller | Views: 31,854 | Posted Date: Monday, May 19, 2003
  • Advanced Server-Side FORM Validation
    An advanced set of customizable tags for validating FORM values on the Server-side using User-Defined Functions
    Difficulty: Advanced | Author: Nathan Miller | Views: 33,128 | Posted Date: Monday, December 15, 2003
  • Coldfusion Master Pages
    Use ASP.NET-style master pages to replace your header/footer files for web page layout
    Difficulty: Advanced | Author: Nathan Miller | Views: 19,529 | Posted Date: Wednesday, August 30, 2006
  • Dynamic Template Delivery (DTD) in FB3 (Fusebox 3) and as a CFC...
    This tutorial will demonstrate how to speed up development and simply your life by using template delivery in FuseBox and CFC's.
    Difficulty: Advanced | Author: Ray Bayly | Views: 28,085 | Posted Date: Thursday, April 3, 2003
  • Custom Tag for Multiple Related Text Boxes
    hi, I saw some tutorials on may sites which show how to develop related select boxes using cold fusion and javascript. Many of them were titles "Multiple Select Boxes" which was a bit un-appropriate as they did not really show how many levels of heirarchy they would cover. So, I finally decided to develop a custom tag that would help developers to simply implement a "n" level of select boxes using hierarchial data. thanks, Saurabh
    Difficulty: Intermediate | Author: Saurabh Gulati | Views: 16,234 | Posted Date: Wednesday, February 11, 2004
  • Custom Tag - Card Expiration Date
    This tutorial lets you save time when you need dates for credit card processing.
    Difficulty: Intermediate | Author: Chris | Views: 9,641 | Posted Date: Wednesday, September 8, 2004
  • Enter-Update same form
    I hate creating duplicate forms where one is for entry and an identical one is for udpating. This code lets you use one form for both purposes.
    Difficulty: Beginner | Author: Rhino | Views: 18,764 | Posted Date: Wednesday, April 7, 2004
  • Form with 2 Submit Buttons
    An easy way to have a form with 2 or more submit buttons where each one does a different thing. One can count a rows in a DB, then next can actually submit the query. Possibilities are limitless.
    Difficulty: Beginner | Author: Rhino | Views: 25,822 | Posted Date: Monday, October 9, 2006
  • User Defined Functions....
    Learn how to use User-Defined Functions in ColdFusion 5.0.
    Difficulty: Advanced | Author: Pablo Varando | Views: 33,427 | Posted Date: Wednesday, August 21, 2002
  • A quick intro into the world of Custom Tags!
    The following tutorial will briefly touch over Custom Tags and show you what they are, how you use them, and how they benfit you by using them.
    Difficulty: Beginner | Author: Pablo Varando | Views: 38,482 | Posted Date: Friday, September 6, 2002
  • Combining two queries into one..

    This tutorial will demonstrate how to create a query from two different queries based from two separate datasources. This is the easiest way to combine your data.


    Difficulty: Intermediate | Author: Pablo Varando | Views: 39,243 | Posted Date: Monday, March 10, 2003
  • Preventing People From Leeching Your Images!

    This tutorial will show you how to load your images from an actual .cfm page. Therefore, allowing you to prevent people from using your content on their web sites.


    Difficulty: Advanced | Author: Pablo Varando | Views: 47,967 | Posted Date: Saturday, August 28, 2010
  • Do you want to remember your members?
    This tutorial will show you how to you can provide your members with the ability to save their username and password into memory, so they dont have to type it in everytime the want to log in to your web site.
    Difficulty: Intermediate | Author: Pablo Varando | Views: 39,493 | Posted Date: Tuesday, May 13, 2003
  • What is the ID for the record I just inserted?
    This tutorial will demonstrate how you can get the ID of the record you have just inserted without having to connect to the database again!
    Difficulty: Intermediate | Author: Pablo Varando | Views: 37,686 | Posted Date: Monday, August 11, 2003
  • Delete files and folders in a specified path!
    This tutorial will demonstrate how you can delete all files and sub-folders in a specified folder using ColdFusion and Windows!
    Difficulty: Intermediate | Author: Pablo Varando | Views: 33,327 | Posted Date: Wednesday, September 7, 2005
  • The best way to show categories (and their children, and their children and those children)
    Today I ran by a forum post on EasyCFM.COM (see it here) that asked for help in displaying categories. This can be tricky; especially if you have many parent/child relationships. So I thought I would post a blog entry talking about the best way I have found to do this... Here goes nothing..
    Difficulty: Intermediate | Author: Pablo Varando | Views: 7,324 | Posted Date: Saturday, December 6, 2008
  • Generating random colors on your ColdFusion Charts using a User Defined Field (UDF)....

    This tutorial will show you how to efficiently re-use code and in addition how to create a random list of colors that you can use with cfchart colorlist.


    Difficulty: Beginner | Author: Pablo Varando | Views: 3,980 | Posted Date: Friday, June 5, 2009
  • CFLOGIN MADE EASY
    This will show how you can validate a user then use CFLOGIN and determine the users admin level within the Application.cfm file. Not hard whatsoever. This one is correct Pablo.
    Difficulty: Intermediate | Author: Wesley Geddes | Views: 30,732 | Posted Date: Sunday, February 6, 2005
  • Using Arrays for Your Sites Security
    You must have a basic understanding of Arrays! This tutorial will showe you how to implement many security checks with 1 database field using Arrays.
    Difficulty: Advanced | Author: Wesley Geddes | Views: 20,963 | Posted Date: Wednesday, June 22, 2005
  • Replacing Ugly Text With Nice Text Graphics
    This tutorial will show you how to replace a text string with letter graphics. This is very nice and includes a zip file with all source ready to run. This also includes an active interactive example right here on the tutorial.
    Difficulty: Intermediate | Author: Wesley Geddes | Views: 23,680 | Posted Date: Friday, July 15, 2005
Download the EasyCFM.COM Browser Toolbar!