Errata

ASP.NET in a Nutshell

Errata for ASP.NET in a Nutshell

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.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

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

Version Location Description Submitted by Date submitted
Printed Page 30
2nd section (Server-side object tags)

The example used for server-side object tags is an <object> tag that doesn't have the
runat="server" attribute. Without that attribute it will be instantiated on the
client, rather than the server.

Anonymous   
Printed Page 42
3rd-to-last paragraph ("Because the Src attribute...")

The paragraph is attempting to explain that Example 3-3's code-behind file must be
compiled into a DLL because the Codebehind attribute was used. Instead, it mentions
the Src attribute, which is incorrect and is not used in Example 3-3. The first
sentence should be changed to "Because the Codebehind attribute is specified...."

Anonymous   
Printed Page 43
List item #4

The path example given is "C:\%windir%Microsoft.NETFramework\%version%". There are
2 errors here. First, %windir% includes the drive letter already (e.g. "C:WINDOWS").
Second, there is no %version% environment variable; the correct variable to use here
would be %FrameworkVersion%.

{Blog.cs} Chapter 6 examples;
Line 41

private BlogMode _mode

should be

private BlogMode _mode = BlogMode.Display;

Anonymous