asp.net – 如何在MVC4的部分视图中添加脚本?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何在MVC4的部分视图中添加脚本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我在部分视图中的代码
@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我想添加该库?

解决方法

您不能从部分渲染布局部分。将节定义移动到父页面或布局。
原文链接:https://www.f2er.com/aspnet/252731.html

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