Hi Imar,
I found some mistakes in book.
1. On Page No 169: However code will run fine but for sake of clarity I think it must be ANDALSO rather than just AND in
VB.Net code snippet if you are using && in C#.
VB.NET
Dim success As Boolean = False
Dim loopCount As Integer = 0
While Not success
And loopCount < 3
success = SendEmailMessage()
loopCount = loopCount + 1
End While
C#
bool success = false;
int loopCount = 0;
while (!success
&& loopCount < 3)
{
success = SendEmailMessage();
loopCount = loopCount + 1;
}
2. On Page No 344 (Note Section):
You write: "To make it easier to see
the error message in case something goes wrong, you can temporarily remove
the UpdatePanel from the page, or
uncomment its closing and opening tags"
But I think word in bold should be
comment
3. On Page No 436 under displaying and editing data with gridview section:
You write: the next Try It Out shows you how
to you create a very simple data-driven web page
Text in bold should be either
do you or simply
to
Regards,
Jack