SysChat

SysChat (http://www.syschat.com/forum.php)
-   Development (http://www.syschat.com/software-support/development/)
-   -   Model, View, Controller (http://www.syschat.com/model-view-controller-449.html)

William_Wilson 03-09-2006 08:46 PM

Model, View, Controller
 
Just wondering how many people, knowledgeable in programming or not are familiar with the model, view, controller style.
This is the most widely used style, though i'm sure it has other names.
Basically is seperates all UI code into view files, model (the code that could be used independant of the UI) into model files, and controller files to link the other two.
It makes sure no part of your code has access to something it shouldn't. Also limiting what the end user is able to change, ie a hacker.


All times are GMT -4. The time now is 06:54 AM.


Copyright © 2005-2013 SysChat.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54