ASP.NET MVC - 视图

为了学习 ASP.NET MVC建一个 Internet

部分 5:的视图。

Views 文件夹

Views (HTML 可能是 html、asp、aspx、cshtml 以及 vbhtml。

Views 文件夹。

Visual Web Developer 个 Account 个 Home 个 Shared Views 。

Account

Home

Shared 。

ASP.NET 文件类型

能够在 Views 到以下 HTML

文件类型 扩展名
纯 HTML .htm or .html
经典 ASP .asp
经典 ASP.NET .aspx
ASP.NET Razor C# .cshtml
ASP.NET Razor VB .vbhtml

Index 文件

文件 Index.cshtml 件)。

@{ViewBag.Title = "Home Page";}

<h1>Welcome to 51help</h1>

<p>Put Home Page content here</p>

About 文件

文件 About.cshtml 面。

@{ViewBag.Title = "About Us";}

<h1>About Us</h1>

<p>Put About Us content here</p>

(或者按 F5)。

样:

行的。

祝贺你

了第一个 MVC

注释: