The Model represents the data engine of the MVC architecture, the Model
holds the data to be rendered to the UI, the View makes use of the data in the
model and binds it appropriately in the Page to display data in the browser. The
Model is also responsible for retrieving the data from and saving the data back
to the underlying database.
A Model is a .vb or .cs class, Model classes should end with the word “Model” example EmployeeModel, DepartmentModel etc.
The Model class is accessible by both the View and the Controller; the data provided by the Model is used by the view to render information to the user in the browser. The View defines the style and formatting aspects of the display and embeds the data provided by the model to produce a page which has meaningful information.
A Model is a .vb or .cs class, Model classes should end with the word “Model” example EmployeeModel, DepartmentModel etc.
The Model class is accessible by both the View and the Controller; the data provided by the Model is used by the view to render information to the user in the browser. The View defines the style and formatting aspects of the display and embeds the data provided by the model to produce a page which has meaningful information.
No comments:
Post a Comment