views:

498

answers:

5

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

A: 

one possible answer is scott guthries content but this is still in the prosess of being developed :)

Erx_VB.NExT.Coder
+3  A: 

Tekpub (Steven Sanderson and Rob Conery) is doing a video series on MVC 2: http://tekpub.com/preview/aspmvc

Codewerks
they charge people ridiculous amounts $20 for a 9 minute episode
Erx_VB.NExT.Coder
That is a preview vid only. It's $25 or so I think and it's for a whole series (if you don't have a subscription); there will something like 8 episodes I would think and each episode of the one's I bought so far are around 30-40 mins long. Ask Rob Conery for details on Twitter or via the site.
Codewerks
they only have 3 episodes or so now... would you like to go halvies in your bill and share?
Erx_VB.NExT.Coder
$28 = less than a Wrox book. It's a professional learning tool, not the latest Miley Cyrus CD.
Codewerks
im just not sure if they will come out with the "8" espisodes in time, if they are released 6 months later then there really is no point to any of it!!
Erx_VB.NExT.Coder
I work with Rob on TekPub and just wanted to clarify that it is $28 for all the episodes (8-10) and they will cover ASP.NET MVC 2.0 in depth. All of the episodes will be released before 6 months I am sure, and most likely well before any book on the subject. Also the license you buy is for one user, please don't share or you are just hurting the authors who spend their time recording these.
James Avery
if you could give us a timeline that would be great, the money is really no issue... if i can guarantee some comprehensive mvc 2.0 documentation or coverage (without having to sort through 1.0 material) then i would almost consider moving my webforms project to mvc... but for this i'd really need to knwo when the 8th or 10th eps will be out!... any ideas?
Erx_VB.NExT.Coder
there is only two episodes at the moment!!! there is just not enough material to move forward with!!
Erx_VB.NExT.Coder
+1  A: 

There is going to be a lot of help around for MVC 1. If you're looking to learn .NET MVC then most of .NET MVC 1 is relevant. Phil Haack is one of many who has blogged about the blogged about the release of .NET MVC 2. Importantly, he gives a link to the release notes.

Not a great deal has actually changed. Mainly to do with validation in fact. You can use the release notes as a guide. Whenever you're doing something that is 'flagged' in the release notes, then make sure you look for .NET MVC2 help specifically.

David Archer
I highly recommend the release notes.
Kezzer
+1  A: 

Brad Wilson has some nice posts about templates.

Arnis L.
+1  A: 

Obviously the first resource I'd point you to is the official ASP MVC website here.

Perhaps the biggest and most key aspect you need to understand about ASP.NET MVC is that MVC isn't explicitly specialised for ASP.NET - it's a very wide design pattern - MVC stands for Model-View-Controller, you should really read up on MVC and gain a general understanding before you dive straight into the ASP.NET implementation.

You may want to look into buying a book that can nicely ease you into ASP.NET MVC. The reviews on amazon are something you want to take into account, as they're usually very accurate.

You can find results of a ASP.NET MVC search here.


As far as your concerns around version 1 to version 2 of ASP.NET MVC go, you shouldn't automatically dismiss any ASP.NET MVC v1 resources you come across - the chances are it's still relevant. You may wish to check out the changelist between v1 and v2 to see if anything you learn is now redundant, updated or changed in any way.

Daniel May