在布局页面的 head 部分中,添加一个
RenderSection("head")
称呼。然后,在 Razor 视图中,添加
@section head {
@myincludemarkup
}
其中“myincludemarkup”当然是您的脚本/样式表引用的 html 标记。
编辑:
布局页面(母版页)中的部分可能如下所示:
<head>
@RenderSection("head")
</head>
这将通过在我的答案顶部编写代码,@section 等来强制您的每个视图都定义一个称为“head”的部分。
如果您希望视图页中的部分是可选的,您可以编写
<head>
@RenderSection("head", optional:true)
</head>
使用此页面作为参考:
http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx
编辑:使用您自己的代码:
@inherits System.Web.Mvc.WebViewPage<dynamic>
@using Razor
@using Razor.Models
@{
View.Title = "Index";
LayoutPage = "~/Views/Shared/_Layout.cshtml";
}
<h2>@View.Message</h2>
@{
UserManager.product prod = UserManager.getUserinfo();
}
@prod.Price
@prod.Title
@prod.ID
<h2></h2>
@section head {
@myincludemarkup
}