Errata

ASP.NET Cookbook

Errata for ASP.NET Cookbook

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page xx
1st paragraph

The web page for the book should read:
http://www.dominiondigital.com/AspNetCookbook/

Anonymous   
Printed
Page 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.

Anonymous   
Printed
Page 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

Anonymous   
Printed
Page 154
2nd paragraph

The method in Example 1-55 is called Page_Load, not setupForm as in the text.

Anonymous