Sunday 27 September 2015


What is MVC?

MVC is one of thestandard design patterns to separates an application into three main components model, view, and controller. ASP.Net MVC framework is development based on this pattern and mainly used in web application development.
Model:It responds to the request from View to read the state (Read the data) and respond to instruction from Controller to change the state (Update the data)
View:Components that display the applications user interface (UI)
Controller:Components that handle user interaction and instruct the Model to change the data or render the right state information in View

No comments:

Post a Comment