I'd like to understand better the MVC pattern, as I'll be probably using it in the future (my job is mainly focused in developing .Net web apps).

Can I ask to this community to help me find a starting direction on this subject? Articles, white papers, code samples, theory... anything you found helpful!

link|improve this question

feedback

15 Answers

up vote 33 down vote accepted
link|improve this answer
feedback

The posts already posted are good starting points for learning ASP.NET MVC, but if you want to learn more about the pattern, here are a few more links:

link|improve this answer
feedback

If you don't already, read ScottGu's blog. That's probably the best thing to do. From there you will find most things related to MVC.

Plus Rob Conery is doing a Storefront series.

link|improve this answer
feedback

What really helped me understand it was the following video from Phil Haack.

In it, he builds an MVC app from scratch. Oh and the app he builds just happens to be a rip off of Stack Overflow, called "HaackOverflow".

Video is here

link|improve this answer
feedback

Also, I find the best way for me to get a real handle on a new technology is to implement it into an existing project. If that is not possible, I reccomend giving yourself a little task to complete within MVC. Maybe something to automate your day to day, or to help out a friend.

It sounds tedious but that's the way I have had the best success in learning something new.

link|improve this answer
feedback

Also check out the Los Techies blogs and Asp.net MVC in Action. This book will also get your taste buds ready for Domain Driven Design.

link|improve this answer
feedback

@Sara Chipps is right - you have to "cut your teeth" on it.

link|improve this answer
feedback

If you want to understand the idea behind the MVC pattern, I've found out that a lot of ruby on rails videos and tutorials explain it very well.

http://wiki.rubyonrails.org/rails/pages/MVC for example.

link|improve this answer
feedback

another page I found today is http://code-inside.de/blog-in/2008/11/26/howto-first-steps-with-aspnet-mvc/

link|improve this answer
feedback

If you're the type that learns best by experimenting with code, I recommend downloading the Nerd Dinner open source project from the MVC folks at MS:

Nerddinner @ Codeplex

This is the code for the public nerddinner.com web site.

link|improve this answer
feedback

One more vote for the 'Nerd Dinner' project being a good learning resource.
Especially if you learn well from 'doing' rather than 'reading'.

Have a look at Scott Gu's Free ASP.NET MVC eBook Tutorial .

A 185 page end-to-end tutorial that walks-through building a small, but complete, ASP.NET MVC application from scratch.

Here's the link to Scott's free end-to-end tutorial chapter in PDF form

link|improve this answer
feedback

I like Pro ASP.NET MVC Framework.

link|improve this answer
feedback

start from here...

MVC Learning Home

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.