show/hide this revision's text 10 added 40 characters in body

MVC takes a more "architectural" view of web application development: offering a standardized scaffold upon which to build. It also provides tools for automatically generating model, view and controller classes within the established architecture. For example, in both Ruby on Rails (just "Ruby" from here on out) and ASP.NET MVC you'll always start out with a directory structure that reflects their overall model of web application architecture. To add a view, model and controller, you'll use a command like Ruby's "Ruby script/generate scaffold {modelname}" (ASP.NET MVC offers similar commands in the IDE). In the resulting controller class, there will be methods ("Actions") for Index (show list), Show, New and Edit and Destroy (at least in Ruby, MVC is similar). By default, these "Get" Actions just bundle up the Model and route to a corresponding view/html file in the "View/{modelname}" directory (note that there are also Create, Update and Destroy actions that handle a "Post" and route back to Index or Show).

show/hide this revision's text 9 Rewrite to reflect a more detailed knowledge of MVC

Years ago when MS released COM and positioned it as

Compared to Web Forms, MVC is simultaneously a lower-level approach to HTML generation with greater control over the next big thingpage output and a higher-level, more architecturally-driven approach. Let me capture Web Forms and MVC and show why I spent about a month reading through think that the specificationscomparison favors Web Forms in many situations - as long as you don't fall into some classic Web Forms traps.My conclusion after reading

Web Forms

In the spec was that these guys were very smart but very greenWeb Forms model, your pages correspond directly to the page request from the browser. They had Thus, if a user wants a list of "drunk the Kool-AidBooks," you'll likely have a page somewhere called "as the expression went Booklist.aspx" and, while some applications were likelyin that page, you'll have to provide everything needed to show that list. This includes code for pulling data, applying any business logic, and displaying the overall vision was fundamentally flawedresults.

MVC strikes me If there is any architectural or routing logic affecting the page, you'll have to code the architectural logic on the page as well. Good Web Forms development usually involves the same kind development of thing a set of support classes in a separate (unit-testable) DLL. These class(es) will handle business logic, data access and architectural/routing decisions.

MVC

MVC takes a more "architectural" view of web application development: offering a standardized scaffold upon which to build. It also provides tools for automatically generating model, view and controller classes within the established architecture. For example, in both Ruby and ASP.NET MVC you'll always start out with a directory structure that it reflects their overall model of web application architecture. To add a view, model and controller, you'll use a command like Ruby's "Ruby script/generate scaffold {modelname}" (ASP.NET MVC offers similar commands in the IDE). In the resulting controller class, there will be methods ("Actions") for Index (show list), Show, New and Edit and Destroy (at least in Ruby, MVC is born from theory rather than evolving organically from similar). By default, these "Get" Actions just bundle up the page-oriented model inherent Model and route to a corresponding view/html file in the Web"View/{modelname}" directory (note that there are also Create, Update and Destroy actions that handle a "Post" and route back to Index or Show).That

The layout of directories and files is significant in MVC. For example, in ASP.NET MVCincurs , the overhead of Index method for a range "Book" object will likely just have one line: "Return View();" Through the magic of abstract dependencies MVC, this will send the Book model to the "/View/Books/Index.aspx" page where you'll find code to display Books. Ruby's approach is similar although the logic is a bit more explicit and less "magic." The View page in order an MVC app are usually simpler than the display logic that you'll find in a Web Forms page because they don't have to get something cool: worry as much about routing, business logic or data handling.

Comparison

The advantages of MVC revolve around a centralized clean separation of concerns and organized set a cleaner, more HTML/CSS/AJAX/Javascript-centric model for producing your output. This enhances testability, provides a more standardized design (good for bringing new developers on board), and opens the door to a more "Web 2.0" type of actions that can isolate database interactionsweb site.

However, pulling apart the controller from there are some significant drawbacks as well.

First, while it is easy to get a demo site going, the view overall architectural model has its own costs a significant learning curve. When they say "Convention Over Configuration" it sounds good - especially as until you realize that you have a system scales and many files are involvedbooks-worth of convention to learn. WorseFurthermore, this complexity ends up solving it is often a problem bit maddening to figure out what is going on because you are relying on magic rather than explicit calls. For example, that really isn't very hard "Return View();" call above? The exact same call can be found in other Actions but they go to begin with!

In different places. If you understand the endMVC convention then you know why this is done. However, I am left with admiration for the cleverness it certainly doesn't qualify as an example of good naming or easily understandable code and it is much harder for new developers to pick up than Web Forms (this isn't just opinion: I had a summer intern learn Web Forms last year and MVC this year and the designers but differences in productivity were pronounced - in favor of Web Forms). BTW, Ruby is a fair certainty bit better in this regard although Ruby features dynamically-named methods that I would take some serious getting-used-to as well.

Second, MVC implicitly assumes that you are building a classic CRUD-style web site. The architectural decisions and especially the code generators are all built to support this type of web application. If you are building a CRUD application and want to adopt a proven architecture (or simply never dislike architecture design), then you should probably use MVC. This However, if you'll be doing more than CRUD and you are reasonably competent with architecture then MVC may feel like a straightjacket until you really master the underlying routing model (which is not to say considerably more complex than simply routing in a WebForms app). Even then, I've felt like I was always fighting the model and worried about unexpected outcomes.

Third, if you don't likecare for Linq (either because you are afraid that Linq-to-SQL is going to disappear or because you find Linq-to-Entities laughably over-produced and under powered) then you also don't want to walk this path since ASP.NET MVC scaffolding tools are build around Linq (this was the killer for me). Ruby's data model is also quite clumsy compared to what you can achieve if you are experienced in SQL (and especially if you are well-versed in TSQL and stored procedures!).

Fourth, MVC technology or proponents often point out that MVC views are closer in spirit to the HTML/CSS/AJAX model of the web. For example, "HTML Helpers" - the little code calls in your vew page that swap in content and place it into HTML controls - are much easier to integrate with Javascript than Web Forms controls. However, ASP.NET 4.0 introduces the ability to name your controls and thus eliminate this advantage.

Fifth, MVC purists often deride Viewstate. In some cases, they are right to do so. However, Viewstate can also be a great tool and a boon to productivity. By way of comparison, handling Viewstate is bad (as I much easier than trying to integrate third-party web controls in an MVC app. While control integration may once have said about COM get easier for MVC, all of the current efforts that I've seen suffer from the need to build (somewhat grody) code to link these controls back to the view's Controller class (that is - so to work around the analogy isn't perfect)MVC model).

Conclusions

I would just tell you like MVC development in many ways (although I prefer Ruby to ASP.NET MVC by a long shot). I also think that it is important that we don't fall into the problem you trap of thinking that ASP.NET MVC is an "anti-pattern" of ASP.NET Web Forms. They are running into looks to me like different but not completely alien and certainly there is room for both.

However, I prefer Web Forms development because, for most tasks, it is rooted in MVC's simply easier to get things done (the exception being generation of a set of CRUD forms). MVC also seems to suffer, to some extent, from an excess of theory. Indeed, look at the many questions asked here on SO by people who know page-oriented ASP.NET but who are trying MVC. Without exception, there is much gnashing of teeth as developers find that they can't do basic tasks without jumping through hoops or enduring a huge learning curve. This is what makes Web Forms superior to MVC inappropriate in my book: MVC makes you are paying pay a real world price in order to live up to some abstract ideal of purity.

That is why I argue thatgain a bit more testability or, in practical termsworse yet, the page-oriented model in classic ASP.NET is to simply better for be seen as cool because you are using the creation of web applicationslatest technology.

Update: I've been criticized for not recognizing that MVC is used extensively heavily in Java and Ruby on Railsthe comments section - some of it quite fair. It is fine to observe that there is a healthy Thus, I have spent several months learning Ruby and active ASP.NET MVC community in Ruby just to make sure I wasn't really missing out on Rails, Javathe next big thing! Of course, etc. and I cede it also helps ensure that point. However, I don't use Java or Ruby because I simply don't care for them: I find ASP.NET's page oriented model simply better for generating, well, pagesprovide a balanced and appropriate response to the question. And pages are You should know that the currency above response is a major rewrite of my initial answer in case the webcomments seem out of synch.

If you wonder whether support for a page-oriented model

While I was a smart move for Microsoft and the developer communitylooking more closely into MVC I thought, one clue comes from development tool adoption patterns from 2001 to 2004. Despite having for a significant head startlittle while, Java's rise almost completely stalled once MS released ASP.NETthat I'd end up with a major mea culpa. In short order, ASP.NET, with its page-oriented modelthe end I concluded that, became significantly while I think we need to spend a lot more popular than Java energy on Web Forms architecture and testability, MVC really doesn't answer the call for me. ObviouslySo, the page model was attractive to a very large base hearty "thank you" to the folks that provided intelligent critiques of developers.

Update: This is getting truly funnymy initial answer.SO wiped out the massive downvote flood inflicted on

As to those who saw this answer yesterday as it was obviously abnormal. This morning, there was another massive a religious battle and who relentlessly engineered downvote flood floods, I don't understand why you bother (19 20+ down-votes within in a few minutes)seconds of one another on multiple occasions is certainly not normal). Obviously, someone has a real problem with If you are reading this post and feels the pressing need to keep it in negative territory. Many thanks, though, go out to the voters that keep voting it up (10 over the last week answer and 34 overall).

For any new visitor who wonders whether wondering if there is something truly "wrong" about my answer given that the score is far lower than some of the other answers, rest assured that it says more about a few people who disagree than the general sense of the community (overall, this one has been upvoted over 60 times).

The fact is that many developers don't care for MVC andthink that it is inferior to a page-oriented model (like me). This , indeed, this is not a minority view (even within MS as the blogs seem to indicate). In fairness, there are many very good developers who like the MVC model a lot and who disagree with me. I'm not sure how many are merely Java/Ruby on Rails fans and how many are true ASP.NET developers.

Finally, there is at least a small, hard-core group who are fanatically trying to keep this answer in the negative territory and who are coordinating a kind of downvote flood. Take that for what you will but don't assume it is the normal give and take of voting.

show/hide this revision's text 8 added 15 characters in body; [made Community Wiki]

In the end, I am left with admiration for the cleverness for the designers but a fair certainty that I would simply never use MVC. This is not to say I don't like the MVC technology or that it is bad (as I may once have said about COM - so the analogy isn't perfect). I would just tell you that the problem you are running into looks to me like it is rooted in MVC's excess of theory. Indeed, look at the many questions asked here on SO by people who know page-oriented ASP.NET but who are trying MVC. Without exception, there is much gnashing of teeth as developers find that they can't do basic tasks without jumping through hoops. This is what makes MVC inappropriate in my book: you are paying a real world price in order to live up to some abstract ideal of purity.

That is why I argue that, in practical terms, the page-oriented model in classic ASP.NET is simply better for the creation of web applications.

Creating an MVC version of ASP.NET is all fine and good but I think it is more

If you wonder whether support for a case where MS engineers wanted something fun to do than something that meets page-oriented model was a crying need (smart move for Microsoft and the various MVC blogs make this pretty clear)developer community, one clue comes from development tool adoption patterns from 2001 to 2004. After allDespite having a significant head start, there is nothing that MVC can do that page-oriented approaches don't do betterJava's rise almost completely stalled once MS released ASP.NET. If you doubt thisIn short order, look at the many questions asked here on SO by people who know page-oriented ASP.NETbut who are trying , with its page-oriented model, became significantly more popular than Java and MVC. Without exceptionObviously, there is much gnashing the page model was attractive to a very large base of teeth as developersfind that they can't do basic tasks without jumping through hoops.

Update: This is what makes MVC inappropriate getting truly funny. SO wiped out the massive downvote flood inflicted on this answer yesterday as it was obviously abnormal. This morning, there was another massive downvote flood (19 within in my book: you are paying a few minutes). Obviously, someone has a real world priceproblem with this post and feels the pressing need to keep it in order negative territory. Many thanks, though, go out to live the voters that keep voting it up to some abstract ideal of purity.

This desire for purity may also explain while (10 over the MVC fans have been quite rude last week and intolerant34 overall). Indeed

For any new visitor who wonders whether there is something truly "wrong" about my answer given the score, I have repeatedly seen systematic attacks on this post to downvote rest assured that many developers don't care for MVC and think that it . The most recent involved 15 downvotes generated within is inferior to a few minutes page-oriented model (like me). This is not a few weeks ago, another MVC fan then went on to visit every answer I'd ever posted minority view (even within MS as the blogs seem to downvote them all)indicate). ThusIn fairness, normal people have upvoted the post about 30 times but there are many very good developers who like the MVC fans model a lot and who cannot deal disagree with an alternative view just don't let it standme. WellI'm not sure how many are merely Java/Ruby on Rails fans and how many are true ASP.NET developers.

Finally, fine - that there is at least a small, hard-core group who are fanatically trying to keep this answer in the negative territory and who are coordinating a kind of downvote flood. Take that for what SO you will but don't assume it is forthe normal give and take of voting.

show/hide this revision's text 7 added 107 characters in body
show/hide this revision's text 6 added 43 characters in body
show/hide this revision's text 5 added 483 characters in body
show/hide this revision's text 4 Fixed grammer
show/hide this revision's text 3 edited body
show/hide this revision's text 2 added 483 characters in body
show/hide this revision's text 1