- Mastering ASP.NET Web API
- Mithun Pattankar Malendra Hurbuns
- 116字
- 2021-07-02 20:52:28
A quick recap of the MVC framework
A Model-View-Controller (MVC) is a powerful and elegant way of separating concerns within an application, and applies itself extremely well to web applications.
With ASP.NET MVC, MVC stands for the following:
- Models (M): These are classes that represent the domain model. Most of them represent the data stored in a database, for example, Employee, Customer, and so on.
- View (V): This is a dynamically generated HTML page as template.
- Controller (C): This is a class that manages the interaction between the View and the Model. Any operation on a View should have a corresponding handling in the Controller like user inputs, render appropriate UI, Authentication, Logging, and so on.
推薦閱讀
- 零基礎搭建量化投資系統:以Python為工具
- Java高并發核心編程(卷2):多線程、鎖、JMM、JUC、高并發設計模式
- Machine Learning with R Cookbook(Second Edition)
- Python深度學習
- PyTorch自然語言處理入門與實戰
- GitLab Repository Management
- Hands-On JavaScript High Performance
- PhpStorm Cookbook
- Multithreading in C# 5.0 Cookbook
- 匯編語言編程基礎:基于LoongArch
- Building Slack Bots
- 算法設計與分析:基于C++編程語言的描述
- 現代C:概念剖析和編程實踐
- 軟件設計模式(Java版)
- Isomorphic Go