Wiley.com
Print this page Share

Professional ASP.NET 4 in C# and VB

ISBN: 978-0-470-50220-4
Paperback
1536 pages
March 2010
Professional ASP.NET 4 in C# and VB (0470502207) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
22 Error in Text
Line No: 21;

content:
PostBackUrl="

while to be correct it should be:

PostBackUrl="~/Page2.aspx" />
9/22/2010
72-73 Error in Code
Current code is:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Handles Me.Load

But should be:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) _
Handles Me.Load

And it is the same for line 7, 19 & 25 of the RandomNumber.aspx.vb file.
03/22/2013
75 Error in Text
Chapter2, Page 75, ca. fourth paragraph, sentence 2 states: "... populated to the Web page itself using the Page.ClientScript.RegisterClientScripBlock that also ...".
This should be RegisterClientScriptBlock.
11/15/2010
75 Error in Text
Chapter2, Page 75, ca. fourth paragraph, sentence 2 states: "... populated to the Web page itself using the Page.ClientScript.RegisterClientScripBlock that also ...".
This should be RegisterClientScriptBlock.
11/15/2010
448 Error in Text
The last paragraph mentions that the XmlWriter was retrieved from a XPathDocument when in fact it is retrieved from the XPathNavigator.
01/05/2011
698 Error in Text
The first paragraph mentions that the "position" property is used to change the box behavior of the box model in CSS, but in reality it should be the "display" property.
01/04/2011
9 401 Text Correction
P. 401, 4th sentence in first paragraph under header Updating Data Using LINQ
Currently Reads: The scalar Single method returns a single object from the collection based on its input parameter. If more than one record matches the parameters, the Single method returns the first match.
Should read:
The scalar Single method returns a single object from the collection based on its input parameter. If there is more than one record that matches the parameters or no records that match the parameters, the Single method throws an InvalidOperationException exception.
09/19/14
Back to Top