You are here: .Net/mvc
MVC(Model View Controller) is a patterns-based way to build dynamic websites that enables a clean separation of concerns. MVC defines three logical layers in application level:
Model: All business logic and database interaction are done in this section. View: It's responsible for how application present to the client. Controller: It handles client interactions. Controllers read data from a view and control user input and send input data to the model. |
BlogActive User (1) |