ASP.NET Cookbook by Michael A. Kittel, Geoffrey T. LeBlond This errata page lists errors outstanding in the most recent printing. If you have technical questions or error reports, you can send them to booktech@oreilly.com. Please specify the printing date of your copy. This page was updated January 5, 2005. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification Confirmed errors: (xx) 1st paragraph; The web page for the book should read: http://www.dominiondigital.com/AspNetCookbook/ (77) The references to Color in the VB code; For the Color property to work properly in this code, the System.Drawing namespace needs to be referenced in the Imports section. AUTHOR NOTE: The reader is correct in stating the need to import the System.Drawing namespace when using the color constants like Color.White. Unfortunately, this section demonstrates three solutions but the full code is only shown for the first solution and that solution does not need the imports statement. This can be a little confusing. While the book text and code is correct, it probably would have been good to add a tip indicating the need to import the System.Drawing namespace for solutions 2 and 3. (123) Time/date format chart; There are several errors in the chart listed below: D ShortDatePattern should be: d ShortDatePattern F Full date and time (long date and short time) should be: f Full date and time (long date and short time) G General (short date and short time) Should be: g General (short date and short time) T ShortTimePattern should be: t ShortTimePattern U UniversalSortableDateTimePattern using the format for universal time display should be: u UniversalSortableDateTimePattern using the format for universal time display (154) 2nd paragraph; The method in Example 1-55 is called Page_Load, not setupForm as in the text.