MVC

MVC is an architectural pattern which separates the representation/implementation and user interaction. It is divided into three section, Model, View and Controller.

View - Responsible for look and feel of the application
Model - Business objects which gives data to the view
Controller - Responsible to take end user request to data and vice versa

There is no special life cycle for MVC similar to ASP.NET

HTML helper helps us to render HTML controls

MVC Model binders act as bridge in between HTML UI and MVC Model


Comments