From da90a2ded748b7d055e1d00ac21cfb02046348a0 Mon Sep 17 00:00:00 2001 From: chanmmn <33271651+chanmmn@users.noreply.github.com> Date: Fri, 12 Jan 2018 23:26:55 +0800 Subject: [PATCH] Update start-mvc.md (#5170) * Update start-mvc.md * Minor tweaks --- aspnetcore/tutorials/first-mvc-app/start-mvc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc.md b/aspnetcore/tutorials/first-mvc-app/start-mvc.md index 2bc2eae0d7..f5fb30998b 100644 --- a/aspnetcore/tutorials/first-mvc-app/start-mvc.md +++ b/aspnetcore/tutorials/first-mvc-app/start-mvc.md @@ -91,7 +91,7 @@ Tap **F5** to run the app in debug mode or **Ctrl-F5** in non-debug mode. ![running app](start-mvc/_static/1.png) -* Visual Studio starts [IIS Express](https://docs.microsoft.com/iis/extensions/introduction-to-iis-express/iis-express-overview) and runs your app. Notice that the address bar shows `localhost:port#` and not something like `example.com`. That's because `localhost` is the standard hostname for your local computer. When Visual Studio creates 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, you'll see a different port number. +* Visual Studio starts [IIS Express](https://docs.microsoft.com/iis/extensions/introduction-to-iis-express/iis-express-overview) and runs your app. Notice that the address bar shows `localhost:port#` and not something like `example.com`. That's because `localhost` is the standard hostname for your local computer. When Visual Studio creates a web project, a random port is used for the web server. In the image above, the port number is 5000. The URL in the browser shows `localhost:5000`. When you run the 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: