From 1d391bbb57da73e9023e57b0f9175d38a2293a88 Mon Sep 17 00:00:00 2001 From: amm303 Date: Wed, 4 Jan 2017 19:20:30 +0000 Subject: [PATCH] Update Welcome.cshtml (#2447) You are on the Welcome page therefore the title should be 'Welcome' not 'About'. --- .../sample/src/MvcMovie/Views/HelloWorld/Welcome.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/HelloWorld/Welcome.cshtml b/aspnetcore/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/HelloWorld/Welcome.cshtml index c24f4cc3f2..58d9275254 100644 --- a/aspnetcore/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/HelloWorld/Welcome.cshtml +++ b/aspnetcore/tutorials/first-mvc-app/start-mvc/sample/src/MvcMovie/Views/HelloWorld/Welcome.cshtml @@ -1,5 +1,5 @@ @{ - ViewData["Title"] = "About"; + ViewData["Title"] = "Welcome"; }

Welcome

@@ -9,4 +9,4 @@ {
  • @ViewData["Message"]
  • } - \ No newline at end of file +