Working with Conditional Processing


Chapter 8, "Using ColdFusion," introduced two ColdFusion tags (<cfoutput> and <cfset>), functions, and variables. This chapter takes CFML one big step further, adding conditional and programmatic processing, the stuff that starts to add real power to your code.

The code you wrote in the last chapter was linearColdFusion started at the top of the page and processed every line in order. And although that works for simple applications, more often than not you'll need to write code that does various things based on conditions, such as:

  • Displaying different messages based on the time of day or day of the week

  • Personalizing content based on user login

  • Informing users of the status of searches or other operations

  • Displaying (or hiding) options based on security level

All these require intelligence within your code to facilitate decision-making. Conditional processing is the mechanism by which this is done, and ColdFusion supports two forms of conditional processing:

  • If statements, created using <cfif> and related tags

  • Switch statements, created using <cfswitch> and <cfcase>

Let's start by taking a look at these in detail.



Macromedia Coldfusion MX 7 Web Application Construction Kit
Macromedia Coldfusion MX 7 Web Application Construction Kit
ISBN: 321223675
EAN: N/A
Year: 2006
Pages: 282

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net