我的布局文件中有以下内容:
@{
ViewBag.Title = "Default page title";
}
<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
</head>
.....
在我看来,我得到了:
@{
ViewBag.Title = "Home";
Layout = "~/Views/Shared/_Layout.cshtml";
}
但是,页面标题将显示为“默认页面标题”。
如何让页面标题显示为“主页”?如果我没有在视图中指定ViewBag.Title
的值,我只想显示“默认页面标题”。
答案 0 :(得分:6)
更改行:
ViewBag.Title = "Default page title";
到
ViewBag.Title = ViewBag.Title ?? "Default page title";