Errata
Advanced ColdFusion Application Development · ISBN 0789718103 · 7 corrections
Initial printing
| Page | Location | Correction |
|---|---|---|
| 86 | Listing 6.3. | Code shown is for LOGIN.CFM, not APPLICATION.CFM as stated. |
| 88 | Listing 6.4. | Code shown is for INDEX.CFM, not APPLICATION.CFM as stated. |
| 325 | JavaScript code in listing 16.21, for loop in function InitControls(). | The for loop should start at 0, not 1. The correct for loop should read “for (var i = 0; i < Books.getRowCount(); i++)”. |
| 440 | Paragraph entitled “Without Scripting”. | Second sentence should read “ColdFusion keeps repeating the code inside the CFLOOP block until the CONDITION becomes TRUE”. |
| 445 | Paragraph beginning with “Guaranteeing That a while Loop Executes at Least Once”. | Words “is met” should be “is no longer met”. |
| 448 | Step 3 in the With Scripting steps. | Second sentence should read “The loop will continue executing over and over until the condition becomes false”. |
| 481 | Code syntax in section entitled “Back Referencing”. | The REReplaceNoCase() function syntax is missing a trailing end parentheses (the “)” character). |