asp.net-mvc – 什么是Razor中的ViewBag.Title?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 什么是Razor中的ViewBag.Title?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
ASP.NET MVC 4中的ViewBag.Title是什么?

我有那个查看文件

@model IEnumerable<MvcMusicStore.Models.Genre>

@{
    ViewBag.Title = "Store";
}

<h2>Index</h2>

我不知道ViewBag.Title可能会改变什么。

解决方法

ASP.NET site

ViewBag is a dynamic object,which means you can put whatever you want
in to it; the ViewBag object has no defined properties until you put
something inside it.

ViewBag.Title属性只是一个字符串对象。在这种情况下,它正在视图中用于实际定义Title属性。如果你要查看你的_Layout.cshtml文件,你可能会看到如下:

<title>@ViewBag.Title</title>

何时在视图中定义属性?当页面最终呈现时,该属性最终在HTML标记中看起来像:

<title>Store</title>

哪个设置浏览器标题

原文链接:https://www.f2er.com/aspnet/252348.html

猜你在找的asp.Net相关文章