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 Pagesh1>
<p>The time is @DateTime.Nowp>
body>
html>
HTML代码与课程不一样的写法。
@{ ViewData["Title"] = "Home Page"; } <div class="text-center"> <h1 class="display-4">Welcomeh1> <p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Corea>.p> div> <h2>this is index h2> @model string <h3>ViewBag.User1-@base.ViewBag.User1h3> <h3>ViewData.User2-@base.ViewData["User2"]h3> <h3>TempData.User3-@base.TempData["User3"]h3> <h3>ViewBag.User1-@base.ViewBag.User4h3> <h3>ViewBag.User1-@base.ViewBag.User1h3> // 主要是这两句代码 <h1>Hello Web Pagesh1> <p>The time is @DateTime.Nowp>
效果