library_image

Errata: Advanced ColdFusion 4.0 Application Development

Errata: Advanced ColdFusion 4.0 Application Development


Original printing (734 pages, published January 1, 1999)

PageLocationCorrection
86Listing 6.3.Code shown is for LOGIN.CFM, not APPLICATION.CFM as stated.
88Listing 6.4.Code shown is for INDEX.CFM, not APPLICATION.CFM as stated.
325JavaScript 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++)”.
440Paragraph entitled “Without Scripting”.Second sentence should read “ColdFusion keeps repeating the code inside the CFLOOP block until the CONDITION becomes TRUE”.
445Paragraph beginning with “Guaranteeing That a while Loop Executes at Least Once”.Words “is met” should be “is no longer met”.
448Step 3 in the With Scripting steps.Second sentence should read “The loop will continue executing over and over until the condition becomes false”.
481Code syntax in section entitled “Back Referencing”.The REReplaceNoCase() function syntax is missing a trailing end parentheses (the “)” character).