005.Getting started with ASP.NET Core MVC and Visual Studio -- 【VS開發asp.net core mvc 入門】

来源:http://www.cnblogs.com/Meng-NET/archive/2017/07/12/7154386.html
-Advertisement-
Play Games

Getting started with ASP.NET Core MVC and Visual Studio VS開發asp.net core mvc 入門 2017-3-7 2 分鐘閱讀時長 本文內容 1.Install Visual Studio and .NET Core 安裝 VS 與 . ...


Getting started with ASP.NET Core MVC and Visual Studio

VS開發asp.net core mvc 入門

2017-3-7 2 分鐘閱讀時長 

本文內容

1.Install Visual Studio and .NET Core

安裝 VS 與 .NET Core

2.Create a web app

創建一個 web 應用

By Rick Anderson

This tutorial will teach you the basics of building an ASP.NET Core MVC web app using Visual Studio 2017.

本教程將會教你如何使用VS2017創建一個基本的asp.net core mvc 應用程式

There are 3 versions of this tutorial:

除此之外,還有其它三個版本的教程(自己翻譯~):

For the Visual Studio 2015 version of this tutorial, see the VS 2015 version of ASP.NET Core documentation in PDF format.

Install Visual Studio and .NET Core

安裝 vs 與 .net core

Install Visual Studio Community 2017. Select the Community download. Skip this step if you have Visual Studio 2017 installed.

安裝vs 2017 社區版。選擇社區版下載。如果你已安裝過可以跳過這個步驟。

Run the installer and select the following workloads:

運行這個安裝包,選擇下麵的工作項:

  • ASP.NET and web development (under Web & Cloud)

需要勾選的環境一

  • .NET Core cross-platform development (under Other Toolsets)

需要勾選的環境二

 

Create a web app

創建一個 web 應用

From Visual Studio, select File > New > Project.

在vs中選擇 File > New > Project 菜單,新建。

Complete the New Project dialog:

完成 新建項目 對話框:

  • In the left pane, tap .NET Core

在左邊的窗格,點擊 .net core

  • In the center pane, tap ASP.NET Core Web Application (.NET Core)

在中間的窗格,點擊 ASP.NET Core Web Application (.NET Core)

  • Name the project "MvcMovie" (It's important to name the project "MvcMovie" so when you copy code, the namespace will

命名項目名稱為 MvcMovie

match.)

  • Tap OK

點擊 OK

 

Complete the New ASP.NET Core Web Application (.NET Core) - MvcMovie dialog:

完成 New ASP.NET Core Web Application (.NET Core) - MvcMovie 對話框:

  • In the version selector drop-down box tap ASP.NET Core 1.1

在版本選擇下拉框中選擇 ASP.NET Core 1.1 選項

  • Tap Web Application

點擊 Web Application

  • Keep the default No Authentication

保持預設的 No Authentication 選擇

  • Tap OK.

點擊 OK

 

Visual Studio used a default template for the MVC project you just created. You have a working app right now by entering a project

VS使用一個預設的項目模板。在你鍵入項目名稱與選擇少量選項之後就有了一個可以正常工作的 web 應用。

name and selecting a few options. This is a simple starter 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.

點擊 F5 在調試模式下啟動這個程式,或者 ctrl+F5 非調試模式下運行該程式。

 

  • Visual Studio starts IIS Express and runs your app. Notice that the address bar shows localhost:port# and not something

VS啟動 iis express 用於運行你的 app 程式。註意瀏覽器的地址欄顯示的是ip+port,而不是常見的功能變數名稱。

like example.com. That's because localhost is the standard hostname for your local computer. When Visual Studio creates

這是因為 localhost 是你本機的標準主機名。當VS創建一個新的web項目,

a web project, a random port is used for the web server. In the image above, the port number is 5000. When you run the app,

一個隨機的埠會被 web server 選擇使用。在上圖中,埠是5000. 在你自己運行這個app的時候,

you'll see a different port number.

你可能會看到一個不同的埠。

  • Launching the app with Ctrl+F5 (non-debug mode) allows you to make code changes, save the file, refresh the browser, and

在非調試模式下啟動應用,允許你做一些代碼變更,保存文件,刷新瀏覽器,並且

see the code changes. Many developers prefer to use non-debug mode to quickly launch the app and view changes.

查看變更。許多開發者更喜歡使用非調試模式快速啟動應用並查看變更。

  • You can launch the app in debug or non-debug mode from the Debug menu item:

你可以在 Debug 菜單已調試或非調試模式啟動你的app:

 

  • You can debug the app by tapping the IIS Express button

你可以通過點擊 IIS Express 按鈕啟動調試程式

 

The default template gives you working Home, About and Contact links. The browser image above doesn't show these links.

預設的模板提供了 Home, About and Contact  三個鏈接與頁面。上圖中瀏覽器沒有顯示這些鏈接。

Depending on the size of your browser, you might need to click the navigation icon to show them.

因為依賴於你的瀏覽器寬度尺寸,你可能需要點擊導航圖標來顯示他們。

 

If you were running in debug mode, tap Shift-F5 to stop debugging.

如果你在調試模式下運行,點擊 Shift-F5 可以停止調試。

In the next part of this tutorial, we'll learn about MVC and start writing some code.

在接下來的教程中,我們將會開始學習 mvc 和如何開始寫一些 代碼 。

 

 

                                         蒙

                                    2017-07-12 11:05 周三

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 看圖說話。 需求:插入兩張表,上面的表單是第一張表的內容,下麵的兩個表格是第二張詳情表的內容,跟第一張表的id關聯 第二張表有一個列是需要用戶手動填寫添加的。 國際慣例,上代碼 後面的列我就不貼出來了 後臺的代碼就不寫了,通過ajax傳到後臺,request取出來,按照插入資料庫的格式整理好即可,如 ...
  • 效果 明細用Popup實現的,錄gif時,Popup顯示不出來,不知道為什麼,所以靜態圖湊合看吧 大體思路 圖表使用Arc+Popup實現 圖表分為兩部分,一是環形部分,一是標註的明細部分. 環形部分使用Arc圖形表示.需要註意這個Arc是Blend里的圖形.用Blend建項目的話可以直接用,使用V ...
  • 環境: win10 64位、memcached 1.4.4 64位、EnyimMemcached 2.16.0(ps:2.13.0也有此問題,別的版本就沒試了). EnyimMemcached git源碼地址:https://github.com/enyim/EnyimMemcached 事發原因: ...
  • 工作中可能會遇到很多不常見的需求,比如這次需要獲取某個月的第一天和最後一天 ...
  • 回到目錄 新建console項目之後,編譯程式出現以下錯誤: Can not find runtime target for framework '.NETCoreAPP, Version=v1.0' compatible with one of the target runtimes: 'win1 ...
  • 異常來自 HRESULT:0x80070057 (E_INVALIDARG)未能載入程式集.......幾次刪除引用然後重新引用程式集還是報錯 奔潰中....網上搜索還真有解決辦法:解決方法 是 刪除 C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Tem ...
  • 回到目錄 在.net frameworks的ef里連接mysql我們已經測試通過了,而在dotnet core里的efCore上去連接mysql我們需要測試一下,並且在測試過程中出現了一些問題,當然最後也是解決了,下麵總結一下,分享給大家! mysql項目的依賴包 數據上下文和連接串 對於mysql ...
  • 本索引目錄主要包括倉儲大叔對dotnet core架構的研究與知識積累,從2016年開始進行撰寫,到今天已經有一年多了,其中有一些小知識,小技巧,小應用,希望給大家在開發時一些啟發,也希望dotnet core越來越好,希望2.0正式版快點出來! DotNetCore跨平臺目錄 DotNetCore ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...