Views: 20.3K
Replies: 3
Archived
|
Details about MVC Design PatternCould anyone provide me some details on why and when to use for MVC Design Pattern?
Harish S D, Jul 10, 2010
|
|
Reply 1You can also watch my videos series at MVC Central. http://www.mvccentral.net
I have a 13 episode videos and articles series where I build an MVC 2 application from scratch while you watch. It gives some best practices and shows me building a full n-Tier application. It's the Golf Tracker screencast series. King Wilder, Jul 16, 2010
|
|
Reply 2Additionally ASP.NET MVC framework is a great thing to work with. The following are the features in a nutshell
Rajesh Pillai, Jul 16, 2010
|
|
Reply 3My take on this is that if you do web development, then you could benefit from using the MVC design pattern. You could either roll your own implementation of it or use Microsoft's framework Asp.Net MVC. There are also third party frameworks such as FubuMVC (http://fubumvc.com/).
A benefit you gain is a separation of UI and business layer, which if done properly would make you app easier to maintain and test. Robert Blixt, Jul 13, 2010
|