Tagged Questions
21
votes
11answers
2k views
What Alternatives Are There to Model-View-Controller?
While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before ...
2
votes
9answers
1k views
Why did Microsoft choose MVC for ASP.NET?
In addition to being a 30 year pattern, MVC was never meant for current applications. MVP was its successor and designed to handle event based apps coming out in the 90s. Passive View and ...
1
vote
1answer
33 views
Creating UI components dynamically in a Model-PassiveView-Controller
In a GUI application, I am using an MVC with a Passive View, as described here.
This pattern is yet another variation on model-view-controller and model-view-presenter. As with these the UI is ...
1
vote
2answers
136 views
Passive view in JavaScript
I'm thinking about an implementation of MVP - Passive View pattern in JavaScript. In most case the view will be simple dom elements where the presenter attaching event listeners. But when it comes to ...