Article ID: 943387 - Last Review: October 4, 2007 - Revision: 1.0

Introducing Microsoft ASP.NET AJAX comments and corrections

On This Page

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Introducing Microsoft ASP.NET AJAX, 978-0-7356-2413-9.

The following topics are covered:

  • Page 22: Code sample partially incorrect

MORE INFORMATION

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.

Keywords: 
KB943387

Note: This article is from Microsoft Knowledage Base


How we have helped PC users like you

In the News: Read More In ...

Related problems posted by other users

more...