Difference Between MVC And Web Forms
div >
January, 2019 / by Krishan Dutt Sharma I will explain what MVC is and how it is different from web forms. I will start a series of learning MVC soon.
What is MVC?
Let's start first with what is MVC?
In a general sense, MVC stands for Model-View-Controller. It is a software design pattern. It is different from MVVM pattern.
MVC is a pattern based on separation of concerns, which means that View, Model and Controller are independent of each other. As a result, working in teams, maintenance and testing of the application become simpler and easier.
So, now what is this Model, View and Controller?
Read More