Resources for Learning ASP.NET MVC 2.0

What are some good resources for learning ASP.NET MVC 2.0 (if I don't already know ASP.NET MVC 1.0)?

+6
c # asp.net-mvc
source share
4 answers

Obviously, the first resource I would point you to is the official ASP MVC site here .

Perhaps the most important and key aspect that you need to understand in ASP.NET MVC is that MVC is not explicitly specialized for ASP.NET - it is a very broad design pattern . MVC stands for Model-View-Controller , you should really read MVC and get a general understanding before that you dive right into the ASP.NET implementation.

You might want to study buying a book that can easily make it easier for you to work with ASP.NET MVC. Amazon reviews are something you want to take into account, as they are usually very accurate.

You can find ASP.NET MVC search results here .


As for your problems around version 1 to version 2 of ASP.NET MVC, you should not automatically drop any ASP.NET MVC v1 resources that you encounter - strong> is still relevant. You might want to check the list of changes between v1 and v2 to find out that something you learned is now redundant, updated, or changed in some way.

+1
source share

TechPub (Steven Sanderson and Rob Coniri) makes a series of videos on MVC 2: http://tekpub.com/preview/aspmvc

+3
source share

There will be a lot of help for MVC. If you want to learn about .NET MVC, then much of .NET MVC 1 matters. Phil Haack is one of many who talked about the .NET MVC 2 release blog . It is important to note that it provides a link to the release notes .

Not much has changed. Mainly do this using validation. You can use the release notes as a guide. Whenever you do something that is β€œtagged” in the release notes, make sure that you are looking for .NET .NET MVC2 specific help.

+1
source share

Brad Wilson has some good template posts .

+1
source share

All Articles