javascript – 在mvc3项目中为单个页面编写css

如果你感到困惑的话,我在这里说错了.

我想把Javascript或Css放在我的页面的头部[谁在浏览器中呈现].
当我试图把它们放进去的时候我发现他身体里面没有头部标签.

i know that i can easily put in head if i not inherit them from master page.

但是如果我从母版页继承它们,我怎么能放在我的页面上.

我想要一个MVC 3项目的溶剂,我的页面是用Razor viewenzine编写的.

解决方法:

在布局页面的head部分中,添加一个

RenderSection("head")

呼叫.然后,在您的Razor视图中,添加

@section head {
 @myincludemarkup
}

其中“myincludemarkup”当然是脚本/样式表引用的html标记.

编辑:

布局页面(母版页)中的部分可能如下所示:

<head>
@RenderSection("head")
</head>

这会强制你的每个视图通过在我的答案的顶部写下代码来定义一个名为“head”的部分,@ section等.

如果您希望视图中的部分是可选的,则可以编写

<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
}
上一篇:c# – ASP.NET MVC Razor语法错误


下一篇:C#-AngularJs:ngRepeat以1以外的增量增加