views:

3663

answers:

8

There are many ASP.MVC blog post bits and pieces scattered over different web sites, as well as couple of resource questions here - ASP.NET Model-view-controller (MVC) - where do I start from? and MVC Learning Resources

I wonder if there was a one-stop tutorial posted yet on getting started with ASP.NET MVC?

Thank you!

Edit: I probably need to clarify - a one-stop tutorial that'd help to get started within and hour or two and learn more as I go... Reading books is a non starter for me personally - takes more time I can afford and starts with basics...

A: 

http://www.asp.net/mvc

Whoops, submitted before I was done. The ASP.NET MVC site has tons of videos/screencast on getting started with ASP.NET MVC. Definitely watch the Scott Hanselman ones first.

Edit

The Rob Conery screencasts that @David provided are provided on the ASP.NET MVC site also, under videos. That would constitute one spot to get those resources and also the ones the ASP.NET MVC team put out.

One note on any resource you use. You could run into functionality that is no longer available in the framework due to it being in development. If you use the resources provided that you already found along with the tutorials, you will find the replacements or how to get around it.

Dale Ragan
+1  A: 

Quickstart gives a good overview of all features.

Gulzar
+11  A: 

Have you looked at MVC Samples on CodePlex? Rob Conery has some screencasts that go along with the creation of the site at http://blog.wekeroad.com/mvc-storefront/.

David Mohundro
The Rob Conery screencasts are provided on the ASP.NET MVC website.
Dale Ragan
+1  A: 

Don't forget Scott Guthrie's blog. Latest news on MVC. The "official" site is two releases behind.

Will
Some of the information is, but they do keep it updated as the new bits come out. There have been quite of few videos released in the past month or so.
Dale Ragan
Also, some of the links in the question he referred to has Scott Guthrie's blog in it.
Dale Ragan
+1  A: 

Hopefully, as we get closer to release, http://asp.net/mvc will be the one stop shop for ASP.NET MVC related issues.

Haacked
A: 

In addition to the above mentioned:

MotoWilliams
A: 

We just recently released the beta version of TheBeerHouse MVC Edition which should give you some great examples. There is also a book written explaining everything, but you will have to wait a little longer for that to come out :D.

Al Katawazi
+4  A: 

Scott Guthrie wrote a free complete end to end tutorial of creating a full web application using MVC and it touches on most of the major pieces of MVC:

Erv Walter