这是我在部分视图中的代码
@model Contoso.MvcApplication.Models.Exercises.AbsoluteArithmetic @using(Html.BeginForm()) { <div> <span style="width: 110px; float:left; text-align:center; font-size:2.5em;">@Model.Number1</span> <span style="width: 110px; float:left; text-align:center; font-size:2.5em;">+</span> <span style="width: 110px; float:left; text-align:center; font-size:2.5em;">@Model.Number2</span> <span style="width: 110px; float:left; text-align:center; font-size:2.5em;">=</span> <span> @Html.EditorFor(model => model.Result) @Html.ValidationMessageFor(model => model.Result) </span> </div> } @section Scripts { @Scripts.Render("~/bundles/jqueryval") }
请注意我的代码底部,我有一个@section,我意识到如果我在那里设置一个断点,它不会运行。如果我在_Layout.cshtml中移动该行,这很有效,但这不是想法。
如何在部分剃刀视图中告诉MVC4我想添加该库?
解决方法
您不能从部分渲染布局部分。将节定义移动到父页面或布局。