+ 1
What's MVC?
5 Answers
+ 8
It is a pattern, that tells you strictly to seperate
- datamodel (maybe sql db)
- presentation
- programming logic
eg maybe amazon:
what you see is the presentation of the datamodel.
if you put an article into your basket, data (model) changes.
The coding should inform the gui to dapt to the new model.
+ 5
model view control
+ 3
mvc is a design patterns and its stand for Model,View and Controller here controller is request handler ,view displays the model data and sends back to controller .view is dependent of both model and Controller and last model represents the data
by using mvc we can create web application quickly with the help of visual studio IDE
clean coding, separation of components like design, business logic and handling the request
etc......
+ 1
more details please
+ 1
thanks a lot