Introduction to MVC
ASP.NET MVC Tutorial
ASP.NET is a tool for creating web pages and websites using HTML, CSS, JavaScript and server scripts development framework.
ASP.NET supports three different development modes:
Web Pages (Web pages), MVC (Model View Controller model-view-controller), and Web Forms (Web Forms).
This tutorial introduces MVC.
Web Pages | MVC |
MVC Programming PatternMVC is one of the three ASP.NET programming patterns. MVC is a pattern for creating Web applications using MVC (Model View Controller model-view-controller) design:
- Model (model) represents the application Core (such as a database record list).
- View displays data (database records).
- Controller handles input (writes database records).
##MVC pattern defines a web application | with three logical layers:
Display layer (view logic) Input control (controller logic) |
##After you install Visual Studio Express for the first time, you can Install patches and service packs by running the installer again and simply click on the link again. |
---|
ASP.NET MVC Reference ManualAt the end of this tutorial, we provide the complete ASP.NET MVC Reference Manual For your review.