Wrox Home  
Search

Topic: ASP.NET

Cover image for product 0470384611
Professional ASP.NET MVC 1.0
Rob Conery, Scott Hanselman, Phil Haack, Scott Guthrie
ISBN: 978-0-470-38461-9
Paperback
456 pages
May 2009
Other Available Formats: Adobe E-Book
Paperback Version: US $49.99 Add to Cart

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
1 Note on Ch 1 Errata
All chapter 1 errata refer to Chapter 1 as it appears in print, not to the free unedited chapter 1 preview.
4/20/09
71, 76, 85 Error in Code
On pages 71, 76 (2 places), and 85 (2 places):

ModelState.AddRuleViolations(dinner.GetRuleViolations());

Should be:

ModelState.AddModelErrors(dinner.GetRuleViolations());
4/20/09
88 Error in Code
ViewData[“countries”] = new SelectList(PhoneValidator.AllCountries,
dinner.Country);

Should be:

ViewData[“Countries”] = new SelectList(PhoneValidator.Countries,
dinner.Country);
4/20/09
89 Error in Code
Countries = new SelectList(PhoneValidator.AllCountries,
dinner.Country);

should be

Countries = new SelectList(PhoneValidator.Countries,
dinner.Country);
4/20/09
89 Error in Code
Delete this line from the code:

[Authorize]
4/20/09
98 Typo in Text
In the first line the extra "e" after "the" should be deleted.
6/9/09
100 Error in Code
<li><%= Html.ActionLink("Find Dinner", "Index", "Home") %></li>

Should be

<li><%= Html.ActionLink("Find Dinner", "Index", "Dinners") %></li>
5/29/09
107 Typo in Text
Second to last paragraph, first line:

PaegeSize

Should be

PageSize
6/9/09
239 Typo in Text
Description for JavaScript(...) method:

second line "execute"

Should be

"executed"
6/12/09

ASP.NET Related Resources

Forums

Blogs

Articles