+ 2
What is mvc?why using mvc?
3 Answers
+ 1
mvc means "model view control" which is a pattern. the goal is to seperate parts of the program so that multiple programmers can work seperately on the same project. eg one person designs the view (or user interface) and another person has the job to get the data on which the view is based on. there is a lot of examples out there for you to look up if you want to know more.
+ 1
MVC(Model, View, Controller) is an architecture or pattern that is currently commonly used in developing applications. It is commonly used because of "Seperation of cencerns" where the View is used for display, the Model to take care of all database related functionalites such as update and delete and the Controller is simply used as a connection between the View and the Model.
+ 1
MVC Model View Controller is there in ASP. NET