This tutorial describes the basic knowledge required to use Microsoft Visual Studio 2012 to create an ASP. NET mvc4 web application.
What kind of applications will be built in this example?
You can create, delete, and edit movie records by using a simple movie management application that selects a record display list from the database. All user data input scenarios contain data verification logic to ensure that the data stored in the database is correct.
The preview figure is as follows:
Note: The UI in is further written into Chinese, rather than displayed in English by default.
Next, go to the topic.
Run vs2012 to create a project. Select C #-> Web-> from the installed project template.ASP. net mvc 4 WebApplications. Name your project as "mvcmovie", and then clickOK.
In the pop-up window for Internet applications (third), view engine maintains the default razor, OK, wait for a moment, vs uses the template to create the entire project, as shown in the entire project directory.
Press F5 to see the overall project running effect, as shown in
As you can see, this is a simple full-Site program that has implemented the registration and login functions and has "about" and "contact information", which is very convenient.
Navigation of all articles in this tutorial
This series contains 10 articles translated from ASP. net mvc4 official tutorial, due to the concise description of this series of articles, the length is moderate, from an example to explain, the full text finally completed a small system for managing movies, very suitable for beginners ASP.. Net mvc4.
The original article is for 9 articles, and the translator splits 6th of them into 2
1. Introduction to ASP. NET mvc4
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/intro-to-aspnet-mvc-4
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/03/2800210.html
2. Add a controller
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-controller
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/04/2801949.html
3. Add a view
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-view
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/04/2801988.html
4. Add a model
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-model
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/05/2803012.html
5. Access the data model from the Controller
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/accessing-your-models-data-from-a-controller
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/05/2803429.html
6. view the Edit Method and edit View
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/examining-the-edit-methods-and-edit-view
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/05/2804100.html
Http://www.cnblogs.com/seawaving/archive/2012/12/06/2804590.html
7. Add fields for the movie model and database table
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-a-new-field-to-the-movie-model-and-table
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/06/2805401.html
8. Add verification for the model
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/adding-validation-to-the-model
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/06/2806322.html
9. view the detail and delete Methods
· Original address: http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/examining-the-details-and-delete-methods
· Address: http://www.cnblogs.com/seawaving/archive/2012/12/10/2811064.html