Model–View–Controller (MVC) is a software architecture, currently considered an architectural pattern used in software engineering.
359
votes
15answers
60k views
What are MVP and MVC and what is the difference?
When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and ...
130
votes
6answers
16k views
Compile Views in ASP.NET MVC
I want an msbuild task to compile the views so I can see if there are compile time errors at well... compile time. Any ideas?
113
votes
24answers
12k views
Does anyone beside me just NOT get ASP.NET MVC? [closed]
I've been fiddling with ASP.NET MVC since the CTP, and I like a lot of things they did, but there are things I just don't get.
For example, I downloaded beta1, and I'm putting together a little ...
88
votes
12answers
24k views
What is the difference between MVC and MVVM?
Is there a difference between the standard "Model View Controller" pattern and Microsoft's Model/View/ViewModel pattern?
88
votes
6answers
29k views
How does Magento code work?
How can the following be accomplish in Magento?
Display a "Hello World" message using a controller/view/model approach. So, if I went to http://mysite.com/myController it would show the string ...
80
votes
9answers
29k views
How can I return the current action in an ASP.NET MVC view?
I wanted to set a css class in my master page depending on the current controller and action. I can get to the current controller via ViewContext.Controller.GetType().Name, but how do I get the ...
74
votes
6answers
11k views
Is it possible to make an ASP.NET MVC route based on a subdomain?
Is it possible to have an ASP.NET MVC route that uses subdomain information to determine its route? For example:
user1.domain.com goes to one place
user2.domain.com goes to another?
Or, can I ...
74
votes
50answers
21k views
What's the best way to separate PHP Code and HTML?
I really don't like mixing PHP and HTML. Mixing them makes it difficult to maintain both the PHP and the HTML, and it just makes sense to keep the two apart.
See also the question on whether PHP is a ...
72
votes
18answers
9k views
What's your 'no framework' PHP framework?
Even with a ton of PHP frameworks out there to choose from, I know many people prefer a minimal, personal set of libraries. What is your method when it comes to 'rolling your own' framework for PHP ...
72
votes
27answers
27k views
Is there a Javascript MVC (micro-)framework?
Are there any client-side Javascript MVC (micro-)frameworks?
I have a rather complicated HTML form and it would benefit from the MVC pattern.
EDIT:
I imagine a good solution would provide the ...
72
votes
23answers
8k views
ASP.NET MVC - Is it worth it yet? [closed]
For any of you that have used ASP.NET MVC (especially the Stack Overflow team), do you think it's worth taking the plunge with a technology that's still in "Preview" releases, not even Beta yet? From ...
70
votes
9answers
16k views
Rails Model, View, Controller, and Helper: what goes where?
In Ruby on Rails Development (or MVC in general), what quick rule should I follow as to where to put logic.
Please answer in the affirmative - With Do put this here, rather than Don't put that there.
...
68
votes
8answers
22k views
Getting Started with RSpec - Looking for tutorials
I'm looking to get started building a project and want to use RSpec from day one. My Ruby background is limited, however, I do have a good understanding of MVC and the structure within Ruby.
In doing ...
67
votes
18answers
18k views
Best ASP.NET MVC book? [closed]
I'm going to be starting a new project with VS2008/ASP.NET, and I would like to use MVC.
What is the best MVC book out there? (Are there any good ones?)
Edit: I threw in the asp.net-mvc-2 tag so we ...
66
votes
8answers
13k views
RSS Feeds in ASP.NET MVC
How would you reccommend handling RSS Feeds in ASP.NET MVC? Using a third party library? Using the RSS stuff in the BCL? Just making an RSS view that renders the XML? Or something completely ...
64
votes
10answers
13k views
ViewModel Best Practices
From this question, it looks like it makes sense to have a controller create a ViewModel that more accurately reflects the model that the view is trying to display, but I'm curious about some of the ...
64
votes
11answers
21k views
Looking for a MVC Sample for WinForms
Can you point me to a good real-world WinForms MVC application/framework?
I understand the Model part - that's your data, and I know the forms are the views, but what's the controller? Especially ...
62
votes
6answers
16k views
Can you overload controller methods in ASP.Net MVC?
Im curious to see if you can overload controller methods in ASP.Net MVC. Whenever I try, I get the error below. The two methods accept different arguements. Is this something that cannot be done?
...
62
votes
7answers
38k views
How to RedirectToAction in ASP.NET MVC without losing request data
Using ASP.NET MVC there are situations (such as form submission) that may require a RedirectToAction.
One such situation is when you encounter validation errors after a form submission and need to ...
59
votes
12answers
15k views
ASP.NET MVC Performance
I found some wild remarks that ASP.NET MVC is 30x faster than ASP.NET WebForms. What real performance difference is there, has this been measured and what are the performance benefits.
This is to ...
55
votes
2answers
9k views
Difference Between ViewData and TempData?
I know what ViewData is and use it all the time, but in ASP.NET Preview 5 they introduced something new called TempData.
I normally strongly type my ViewData, instead of using the dictionary of ...
53
votes
15answers
4k views
ASP.NET Model-view-controller (MVC) - where do I start from?
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 ...
51
votes
6answers
37k views
ASP.NET MVC controller actions that return JSON or partial html
I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page asynchronously?
46
votes
9answers
16k views
MVC pattern in Android?
Is it possible to implement the Model-View-Controller pattern in Java for Android? Or is it already implemented through Activities? Or is there a better way to implement the MVC pattern for Android?
45
votes
8answers
15k views
Implementing MVC with Windows Forms
Where can I find a good example on how to completely implement the MVC pattern in Windows Forms. I found many tutorials and code examples on various sites (e.g. CodeProject, .NetHeaven) but many are ...
45
votes
13answers
12k views
MVC tutorial that doesn't rely on a framework?
I want to learn MVC "architecture pattern" but I don't want to jump into a framework like Rails or Django just yet. I want to understand the concept first and write some simple code in my currently ...
44
votes
14answers
1k views
How to convince fellow developers that the in-house framework is no good
Here's the story:
I have moved to a new job 3 months ago. The development team consists of 5-6 people, with one lead developer.
All of the projects here are "one-man-jobs", there are no tasks ...
43
votes
22answers
6k views
Should I migrate to ASP.NET MVC?
I just listened to the StackOverflow team's 17th podcast, and they talked so highly of ASP.NET MVC that I decided to check it out.
But first, I want to be sure it's worth it. I already created a base ...
41
votes
13answers
4k views
What goes into the “Controller” in “MVC”?
I think I understand the basic concepts of MVC - the Model contains the data and behaviour of the application, the View is responsible for displaying it to the user and the Controller deals with user ...
40
votes
15answers
18k views
Have You Switched from CodeIgniter to Kohana?
I usually just work with straight PHP, but now I want to try MVC, and see if a framework will really speed up development. After much waffling, analysis paralysis, and many dumb SO questions; I ...
39
votes
9answers
21k views
ASP.NET MVC Ajax.ActionLink with Image
is there anyway to have an image act as an ajax actionlink? I can only get it to work using text. Thanks for your help!
39
votes
16answers
3k views
What's the best way to implement field validation using ASP.NET MVC?
I am building a public website using ASP.NET, as part of the deliverable I need to do an Admin Site for data entry of the stuff shown in the public site, I was wondering what techniques or procedures ...
37
votes
15answers
11k views
SIMPLE PHP MVC Framework!
I need a simple and basic MVC example to get me started. I dont want to use any of the available packaged frameworks.
I am in need of a simple example of a simple PHP MVC framework that would allow, ...
36
votes
10answers
3k views
Any procedural (non-OO) PHP Framework?
I've stumbled across a couple of PHP Framework questions on SO. But like //so/questions/2648/what-php-framework it's mostly an itching on the surface or popularity contest. Skimming through each ...
35
votes
5answers
5k views
What is the HMVC pattern?
Reading Kohana's documentation, I found out that the main difference in 3.0 version is that it follows the HMVC pattern instead of MVC as version 2.x does. The page about this in Kohana's docs and the ...
34
votes
12answers
20k views
MVC Vs n-tier architecture
I was wondering what exactly is the difference between MVC(which is an architectural pattern) and an n-tier architecture for an application. I searched for it but couldn't find a simple explanation. ...
34
votes
5answers
19k views
How can I post an array of string to ASP.NET MVC Controller without a form?
I am creating a small app to teach myself ASP.NET MVC and JQuery, and one of the pages is a list of items in which some can be selected. Then I would like to press a button and send a List (or ...
33
votes
5answers
5k views
SproutCore vs. Cappuccino
Aside from the language differences Javascript vs. Objective-J what benefits does Cappuccino provide over SproutCore and vice-versa in your experiences?
In terms of a long-term forecast, is ...
33
votes
11answers
1k views
Understanding the MVC Pattern
I am having some trouble understanding the MVC Pattern. I do understand we are trying to decouple the GUI from the business logic, although I'm having problems understanding how.
From what I ...
33
votes
11answers
3k views
From WebForms to ASP.NET MVC
This question is for anyone who has significant experience using ASP.NET WebForms who has made the switch to ASP.NET MVC.
What was your business justification for making the switch?
Do you consider ...
33
votes
6answers
7k views
How Does Differential Execution Work?
I've seen a few mentions of this on SO, but staring at Wikipedia (the relevant page has since been deleted) and at an MFC dynamic dialog demo did nothing to enlighten me. Can someone please explain ...
33
votes
2answers
3k views
Service Layers and Repositories
I've been using MVC frameworks for a short while now and I really like how the concerns are separated out. I've got into a bad habit of letting the controllers do quite a bit of work. So I'm really ...
31
votes
5answers
2k views
How can you organize the code for a game to fit the MVC pattern?
I'm a freshman in college going for my computer science degree... I've programmed plenty the last several years but just lately I've been getting more into theoretical ideas about organizing code, ...
31
votes
10answers
6k views
Why should I use an MVC framework for PHP?
There are lots and lots of opinions available about what framework is the best choice as well as resources and tutorials to help you learn to use them. What I'm having a hard time finding is a clear ...
31
votes
19answers
2k views
Why should I use templating system in PHP?
Why should I use templating system in PHP?
The reasoning behind my question is: PHP itself is feature rich templating system, why should I install another template engine?
The only two pros I found ...
29
votes
19answers
17k views
What's a good lightweight Python MVC framework?
I know there are a ton of Python frameworks out there. Can you guys point me in the right direction? My primary concern is simplicity, I don't need a lot of extraneous features.
Here are a couple of ...
28
votes
6answers
20k views
MVC - Passing Data with RedirectToAction()
What I'm attempting to do is take the data entered into an MVC user form and submit it back to the user in a different view.
I have a private variabled declared in the class:
IList<string> ...
28
votes
5answers
8k views
Practical Application of MVC || When to use, or not use MVC
I have seen the ASP.NET community buzzing about MVC. I know the basics of its origin, and that there are many sites (unless I am mistaken, stack overflow itself) based on ASP.NET MVC.
From ...
28
votes
5answers
16k views
Multiple languages in an ASP.NET MVC application?
What is the best way to support multiple languages for the interface in an ASP.NET MVC application. I've seen people use resource files for other applications. Is this still the best way?
27
votes
6answers
2k views
Why do I need to work harder to make my Rails application fit into a RESTful architecture?
The Background
I started a Rails project recently and decided to use RESTful controllers. I created controllers for my key entities (such as Country) and added index, new, edit, create, show, update, ...