43-10000 ASP.NET Web Pages 实例1 Hello Web Pages
不对的写法

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <h1>Hello Web Pages</h1> <p>The time is @DateTime.Now</p> </body> </html>
HTML代码与课程不一样的写法。
@{ ViewData["Title"] = "Home Page"; } <div class="text-center"> <h1 class="display-4">Welcome</h1> <p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p> </div> <h2>this is index </h2> @model string <h3>ViewBag.User1-@base.ViewBag.User1</h3> <h3>ViewData.User2-@base.ViewData["User2"]</h3> <h3>TempData.User3-@base.TempData["User3"]</h3> <h3>ViewBag.User1-@base.ViewBag.User4</h3> <h3>ViewBag.User1-@base.ViewBag.User1</h3> // 主要是这两句代码 <h1>Hello Web Pages</h1> <p>The time is @DateTime.Now</p>
效果