Wiley.com
Print this page Share

Professional ASP.NET MVC 3

ISBN: 978-1-118-07658-3
Paperback
432 pages
August 2011
Professional ASP.NET MVC 3 (1118076583) 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
15 Error in Tip
The tip states:
"The Intranet Application template was added as part of the ASP.NET MVC 3 Tools Update. It is similar to the Intranet Application template, but the account management....."

should be corrected to:
"The Intranet Application template was added as part of the ASP.NET MVC 3 Tools Update. It is similar to the Internet Application template, but the account management....."

Intranet changed to Internet
8/16/11
40 Typo in Tip
in the tip:
"While there isn't a real technical advantage to choosing one format over there other...."

Should read:
"over the other"
8/16/11
42 Error in Text
Currently reads: "Within each Controller folder..."

Should read: "Within each controller's View folder..."
02/27/2012
43 Error in Code
code snippet 3-7.txt:
<ul>
@foreach (Album a in (ViewBag.Albums as IEnumerable)) {
<li>@p.Title</li>
}
</ul> 
Line 3 should be <li>@a.Title</li>
8/8/11
45 Error in Text
Install-Package Wrox.ProMvc3.Views.AlbumsList should end with AlbumList, not AlbumsList.
9/9/11
54 Error in Text
Currently reads:

var message = ?Hello @ViewBag.Username;

Should read:

var message = ?Hello @ViewBag.Username';
12/9/2011
64 Typo
In the first paragraph:
...to locate a vfiew corresponding...

should be:
...to locate a view corresponding...
8/16/11
85 Error in Text
First paragraph, last sentence.

Currently reads: "third parameter"
Should read: "fourth parameter"
11/29/2011
94 Repeated Error in Code
the following snippet is incorrect:
<input type="submit" value"Search!" />

the = is missing from the value parameter. It should say value=?Search!?
9/6/11
94 Typo
about two-thirds of the way down the page:
"HTPT"

should be:
"HTTP"
9/9/11
97 Error in Text
Chapter 5, PG 97: missing word in last paragraph:
Currently reads: "there is an HTML to do the calculation for you"
Should read: "there is an HTML helper to do the calculation for you"
01/20/2012
111 Error in Code
The last two lines of code should not have additional indentation.
01/20/2012
114 Error in Text
Chapter 5: PG 114: 3rd paragraph
Currently reads: "The RenderPartial helper is similar to Render"
Should read: "The RenderPartial helper is similar to Partial"
01/20/2012
143 Error in Text
First paragraph:

Currently reads: "...write and code..."

Should read: "...write any code..."

08/08/2012
154 Error in Code
Code should read as:
<script type="text/javascript">
    $(function () {
        var message = 'Welcome, @Encoder.JavaScriptEncode(ViewBag.UserName)!';
        $("#welcome-message").html(message).hide().show('slow');
    });
</script>
}

11/29/2011
163 Error in Code
<httpCookies domain=?String? httpOnlyCookies=?true? requireSSL=?false? />

should be:
<httpCookies domain=?? httpOnlyCookies=?true? requireSSL=?false? />
9/13/11
182 Error in Table
Table 8-1:
$("header")

should be:
$("#header")
8/25/11
185 Error in Tag
In script tag:
MoviesScripts.js

should be:
MusicScripts.js
9/9/11
226 Error in Text
Table 9-5, Row 2, Route Data Result column should be amended to:

title="House"
cat="dwelling"
11/29/2011
11 283-290 Page Replacement Note
These pages have been reformatted for better presentation of content. The updated pages are posted on this book's download page.
10/10/11

Related Titles

More By These Authors

General Programming & Software Development

by Narendra Jussien
by Claude Jard (Editor), Olivier H. Roux (Editor)
Back to Top