Errata for Introducing Microsoft® ASP.NET AJAX
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 22
|
Code sample partially incorrect
On page 22, the code sample in the second NOTE box contains a duplicate line along with an undefined variable.
Change:
var supportsInnerText = false;
var supportsInnerText = false;
if (temp != undefined)
supportsInnerText = true;To:
var supportsInnerText = false;
var temp = document.getElementsByTagName("body")[0].innerText;
if (temp != undefined)
supportsInnerText = true;
Microsoft Press is committed to providing informative and accurate
books. All comments and corrections listed above are ready for
inclusion in future printings of this book. If you have a later printing
of this book, it may already contain most or all of the above corrections.
|
Microsoft Press |
May 06, 2010 |
|