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. 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 42
IN PRINT: Example 3-4, 12th line of code |
Protected Sub Page_Load(sender as Object, e As EventArgs)
SHOULD BE:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles
MyBase.Load
|
Anonymous |
|
|
| Printed |
Page 49
READER: 3rd paragraph under State Management |
I guess I would constitute this as a gotcha. If you set a textbox to EnableViewState
to false, the text will be persisted after postback. The article here discusses this
issue http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B316813
AUTHOR: I don't know that I'd call it errata, so much as an exception to the rule,
but the statement is correct, so it should be posted.
|
Anonymous |
|
|