- 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.
推薦閱讀
- 數據庫系統原理及MySQL應用教程(第2版)
- Google Apps Script for Beginners
- Twilio Best Practices
- Magento 2 Theme Design(Second Edition)
- Backbone.js Blueprints
- Reactive Programming With Java 9
- Scala謎題
- FPGA Verilog開發實戰指南:基于Intel Cyclone IV(進階篇)
- 編程與類型系統
- Service Mesh實戰:基于Linkerd和Kubernetes的微服務實踐
- .NET 4.5 Parallel Extensions Cookbook
- Java并發編程之美
- 寫給青少年的人工智能(Python版·微課視頻版)
- 算法超簡單:趣味游戲帶你輕松入門與實踐
- 自己動手構建編程語言:如何設計編譯器、解釋器和DSL