Code Magazine article on ASP.NET MVC 2 source code download

In the Nov/Dec 2009 issue of CODE Magazine, I submitted an article entitle “ASP.NET MVC 2 in Action”.  You can read the full article online here.  I wanted to write this short post to let the public know where to get the source code used for the article.  You can download the code here.


Trackbacks

ASP.NET MVC Archived Blog Posts, Page 1 Posted on 2.10.2010 at 9:32 PM

Pingback from ASP.NET MVC Archived Blog Posts, Page 1

Comments

Alper said on 2.09.2010 at 10:05 AM

Informative article.. Why did you decide to send "dto" instead of sending "item" directly to DisplayFor method in the Home Index view?

<% foreach (var item in Model) { %>

<%GuestDto dto = item;%>

<%=Html.DisplayFor(x=>dto) %>

<% } %>

anon said on 2.09.2010 at 11:36 AM

Where's the zip file that has all the code or am I supposed to download each file seperatey!?

Jeffrey Palermo said on 2.09.2010 at 2:45 PM

@Anon,

I fixed the URL. The previous URL was the SVN repository trunk location. Here it is: code.google.com/.../detail

Chris Benard said on 2.11.2010 at 2:10 PM

Jeffrey,

Can you post a docx of the article so we can see higher res images and have one continuous document so we don't have to deal with code magazine's pagination?

Also, this is a side note: can you take a look at this issue I submitted about codecampserver: code.google.com/.../detail

Nobody has even acknowledged it, and unless I'm just being very stupid, it breaks the build of CCS if you've never pulled the source down before. Feel free to reply in the google issue so I don't hijack this comment page.