Thursday, September 29, 2011

MVC - 3 : The Execution


The Execution
We've already covered some of the nuances in the Concepts section above, but there are many more. Let's briefly take a look at three, data propagation, identity maintenance, and multi-model mvc.

Wednesday, September 28, 2011

MVC - 2 : The Concepts

The Concepts
The Idea behind MVC is to break apart any program into it's distinct parts the data (M:Model), the algorithms that work on the data (C:Controller) and what you see (V:View). The Concepts are the way that these three ideas are created.

Tuesday, September 27, 2011

MVC - 1 : The Idea

Otherwise known as Model View Controller. This is a very simple idea made from complex concepts that are executed with nuanced application.