Can you explain Model, Controller and View in MVC?

Technology CommunityCategory: ASP.NET MVCCan you explain Model, Controller and View in MVC?
VietMX Staff asked 3 years ago
  • Model — It’s a business entity and it is used to represent the application data.
  • Controller — Request sent by the user always scatters through controller and it’s responsibility is to redirect to the specific view using View() method.
  • View — It’s the presentation layer of MVC.