在MVC3中创建默认网站页面标题

时间:2012-03-13 22:38:32

标签: asp.net-mvc-3 razor default page-title

我的布局文件中有以下内容:

@{
    ViewBag.Title = "Default page title";
}

<!DOCTYPE html>
<html>
<head>
    <title>@ViewBag.Title</title>
</head>
.....

在我看来,我得到了:

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

但是,页面标题将显示为“默认页面标题”。

如何让页面标题显示为“主页”?如果我没有在视图中指定ViewBag.Title的值,我只想显示“默认页面标题”。

1 个答案:

答案 0 :(得分:6)

更改行:

ViewBag.Title = "Default page title"; 

ViewBag.Title = ViewBag.Title ?? "Default page title";