Showing posts with label ASP.NET MVC. Show all posts
Showing posts with label ASP.NET MVC. Show all posts

Introduction MVC 5

MVC stands for model-view-controller.  MVC is a pattern for developing applications that are well architect-ed, testable  and easy to maintain. MVC-based applications contain:
  • Models: Classes that represent the data of the application  and that use validation logic to enforce business rules for that data.
  • Views: Template files that your application uses to dynamically  generate HTML responses.
  • Controllers: Classes that handle incoming browser requests,  retrieve model data, and then specify view templates that return a response  to the browser.
 

Copyright © 2013-2014 Lai Duy Thanh All rights reserved.