ASP.NET MVC From Beginning - Part One
3/08/2019
View:
401
|
Models- Model is a set of classes, that is responsible for data and business-related logic. Model is used to communicate with the database and describes how the data can be changed and manipulated. Views- View describes how the application user interface is displayed. In MVC, Views are created by using C# and HTML Views get the result from the Controller and display the data to the users. Controllers- Controller is the most important component of MVC. Controllers handle the application execution logic, take input from Views, and send data to Models. A Controller controls the overall execution flow of an application.
CHI TIẾT - READ MORE
|