3

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

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

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

在我看来,我有:

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

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

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

4

2 回答 2

6

换行:

ViewBag.Title = "Default page title"; 

ViewBag.Title = ViewBag.Title ?? "Default page title"; 
于 2012-03-13T22:41:54.820 回答
3

试试这个

<title>@(String.IsNullOrEmpty(ViewBag.Title) ? "Default page title" : ViewBag.Title)</title>
于 2012-03-13T22:42:34.980 回答