Microsoft ASP.NET Programming with Microsoft Visual C# .NET Version 2003 Step By Step Comments and Corrections (828799)



The information in this article applies to:

  • MSPRESS Microsoft ASP.NET Programming with Microsoft Visual C# .NET Version 2003 Step By Step, ISBN 0-7356-1935-2

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Microsoft ASP.NET Programming with Microsoft Visual C# .NET Version 2003 Step By Step, ISBN 0-7356-1935-2.

The following topics are covered:
  • Page 86: Imports Should Be Using
  • Page 121: "fnf.aspx.vb" Should Be "fnf.aspx.cs"
  • Page 153: Incorrect URL To XSS Overview
  • Page 256: Incorrect Text Regarding Operators
  • Page 414: Imports Should Be Using

MORE INFORMATION

Page 86: Imports Should Be Using

There is an error on page 86. The Imports statement should be Using.

Change:
"Note that you use the imports statement to access the members of the Animals namespace..."

To:
"Note that you use the using statement to access the members of the Animals namespace..."

Page 121: "fnf.aspx.vb" Should Be "fnf.aspx.cs"

There is an error in the file name in step 6. The .vb file extension should be .cs.

Change:
"6 Save fnf.aspx and fnf.aspx.vb."

To:
"6 Save fnf.aspx and fnf.aspx.vb."

Page 153: Incorrect URL To XSS Overview

The URL provided on page 153 for the Cross-site Scripting Overview page is incorrect.

Change:
"http://www.microsoft.com/technet/security/topics/csoverv.asp"

To:
"http://www.microsoft.com/technet/security/news/csoverv.mspx"

Page 256: Incorrect Text Regarding Operators

The operator mentioned at the bottom of page 256 is incorrect.

Change:
"is appended to this text programmatically in the event handler using the & operator."

To:
"is appended to this text programmatically in the event handler using the + operator."

Page 414: Imports Should Be Using

There is an error on page 414. The Imports statement should be Using.

Change:
"In this syntax example, an Imports statement imports the System.Web.Services namespace."

To:
"In this syntax example, a Using statement imports the System.Web.Services namespace."


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.

Modification Type:MajorLast Reviewed:6/27/2004
Keywords:kbinfo kbfix kbdocfix kbdocerr KB828799