Microsoft KB Archive/943387

From BetaArchive Wiki

Article ID: 943387

Article Last Modified on 10/4/2007



APPLIES TO

  • Introducing Microsoft ASP.NET AJAX, ISBN 978-0-7356-2413-9



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.


Additional query words: 0-7356-2413-5 978-0-7356-2413-9

Keywords: KB943387