Monday, 15 February 2016

What is Asp.net MVC ?

MVC stands for Model View Controller is a web application development framework mainly used for developing application in three layers like Data Layer also called Model, Presentation Layer also called View and Business Layer called as Controller.
We use MVC pattern to reduce complexity of code and provide seperation of codes.
Model is used as class it contains the Database entity logics and provides manupulation of data to write code here.
View is used as presentation layer .it presents the data in desired format that user wants to present.
Controller is collection of methods defined business logic of an application.

No comments:

Post a Comment