Asp.Net MVC graphics

MVC is a popular web application architecture technology,

Divide the Web application into three parts: Model (model), Controller (controller) and View (view).

The controller receives the request sent by the webpage. If it needs to request data, it first fetches the data from the Model, and then hands it to the View for display.

ASP.NET MVC execution sequence

A three-tier architecture can also be embodied in MVC.

 

Guess you like

Origin blog.csdn.net/qq_20936333/article/details/131252100