最新的Web开发教程
 

ASP.NET MVC - 样式和布局


要了解ASP.NET MVC,我们正在建立一个互联网应用。

第三部分:添加样式和外观的一致性(Layout)


添加布局

该文件_Layout.cshtml代表应用程序中每个页面的布局。 它坐落在浏览文件夹内的共享文件夹。

打开文件,并与此交换的内容:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> @ViewBag.Title </title>
<link href=" @Url.Content("~/Content/Site.css") " rel="stylesheet" type="text/css" />
<script src=" @Url.Content("~/Scripts/jquery-1.5.1.min.js") "></script>
<script src=" @Url.Content("~/Scripts/modernizr-1.7.min.js") "></script>
</head>
<body>
<ul id="menu">
<li> @Html.ActionLink("Home", "Index", "Home") </li>
<li> @Html.ActionLink("Movies", "Index", "Movies") </li>
<li> @Html.ActionLink("About", "About", "Home") </li>
</ul>
<section id="main">
@RenderBody()
<p>Copyright w3ii 2012. All Rights Reserved.</p>
</section>
</body>
</html>

HTML助手

在上面的代码中,HTML辅助用于修改HTML输出:

@url。 Content() - URL内容将在这里插入。

@Html。 ActionLink() - HTML链接将在这里插入。

您将了解更多关于HTML佣工在本教程的后面章节。


Razor语法

在上面的代码中,代码标记为红色是使用C# Razor标记。

@ ViewBag.Title - 网页标题将在这里插入。

@ RenderBody() -该网页的内容将在这里呈现。

您可以了解Razor标记为C#和VB (Visual Basic)在我们的Razor教程


添加样式

该应用程序的样式表被称为的site.css。 它坐落在内容文件夹中。

打开文件的site.css和交换与此内容:

body
{
font: "Trebuchet MS", Verdana, sans-serif;
background-color: #5c87b2;
color: #696969;
}
h1
{
border-bottom: 3px solid #cc9900;
font: Georgia, serif;
color: #996600;
}
#main
{
padding: 20px;
background-color: #ffffff;
border-radius: 0 4px 4px 4px;
}
a
{
color: #034af3;
}
/* Menu Styles ------------------------------*/
ul#menu
{
padding: 0px;
position: relative;
margin: 0;
}
ul#menu li
{
display: inline;
}
ul#menu li a
{
background-color: #e8eef4;
padding: 10px 20px;
text-decoration: none;
line-height: 2.8em;
/*CSS3 properties*/
border-radius: 4px 4px 0 0;
}
ul#menu li a:hover
{
background-color: #ffffff;
}
/* Forms Styles ------------------------------*/
fieldset
{
padding-left: 12px;
}
fieldset label
{
display: block;
padding: 4px;
}
input[type="text"], input[type="password"]
{
width: 300px;
}
input[type="submit"]
{
padding: 4px;
}
/* Data Styles ------------------------------*/
table.data
{
background-color:#ffffff;
border:1px solid #c3c3c3;
border-collapse:collapse;
width:100%;
}
table.data th
{
background-color:#e8eef4;
border:1px solid #c3c3c3;
padding:3px;
}
table.data td
{
border:1px solid #c3c3c3;
padding:3px;
}

该_ViewStart文件

在共享文件夹中的文件_ViewStart (inside the Views folder)包含以下内容:

@{Layout = "~/Views/Shared/_Layout.cshtml";}

该代码会自动添加到应用程序中显示的所有意见。

如果您删除此文件,则必须将此行添加到所有视图。

您将了解更多有关意见在本教程的后面章节。