This tutorial will teach you the basics of building an ASP.NET Core MVC web app using Visual Studio 2015.web
在这个范例里,咱们将使用Visual Studio 2015建立基本的Asp.Net Core MVC网站。express
Install Visual Studio Community 2015. Select the Community download and the default installation. Skip this step if you have Visual Studio 2015 installed.浏览器
安装Visual Studio Community 2015。下载Community后默认安装,若是你已经安装能够跳过这步。 服务器
Install .NET Core + Visual Studio toolingmvc
From the Visual Studio Start page, tap New Project. dom
在Visual Studio 起始页面,点击New Project visual-studio
Alternatively, you can use the menus to create a new project. Tap File > New > Project. 网站
你也能够经过菜单建立新项目。点击File > New Project ui
Complete the New Project dialog:
在New Project对话框完成如下操做:
Complete the New ASP.NET Core Web Application - MvcMovie dialog:
在New Asp.Net Core Web Application –MvcMovie对话框完成如下操做:
Visual Studio used a default template for the MVC project you just created, so you have a working app right now by entering a project name and selecting a few options. This is a simple "Hello World!" project, and it's a good place to start,Tap F5 to run the app in debug mode or Ctrl-F5 in non-debug mode.
Visual Studio会根据默认模板建立MVC项目,你只要输入一个项目名和选择几个选项就能建立。这是一个Hello World的项目,一个好的开始!点击F5debug模式应用或者Ctrl+F5非Debug模式运行。
localhost:port#
and not something like example.com
. That's because localhost
always points to your own local computer, which in this case is running the app you just created. When Visual Studio creates a web project, a random port is used for the web server. In the image above, the port number is 1234. When you run the app, you'll see a different port number. The default template gives you working Home, About and Contact links. The browser image above doesn't show these links. Depending on the size of your browser, you might need to click the navigation icon to show them.
默认模板有HOME,About和Contact三个连接。下图由于浏览器问题你看不到这几个连接,你能够经过点击导航图标显示。
If you were running in debug mode, tap Shift-F5 to stop debugging.
若是你运行在Debug模式下,Shift+F5中止Debug。
In the next part of this tutorial, we'll learn about MVC and start writing some code.
在这个范例的下一章节,咱们将如何编写MVC代码。
https://docs.microsoft.com/zh-cn/aspnet/core/tutorials/first-mvc-app/start-mvc