我需要你的帮助,我已经编写了这段代码来渲染"〜/ bundles / jqueryval"
视图代码
@model workflow.DataHolders.NewCompany
<link href="@Url.Content("~/sharedfiles/css/forms/addnew.css")" rel="stylesheet" type="text/css" />
<div id="Add_container">
@if (!ViewData.ModelState.IsValid)
{
<div id="validationMessage">Please Correct The Errors Below</div>
}
@using (Html.BeginForm("ValidateAndSignUp", "Accounts", FormMethod.Post))
{
@Html.AntiForgeryToken()
@Html.ValidationMessage("CompanyName");
<span class="field_title">Company Name: </span>
@Html.TextBox("CompanyName")
@Html.ValidationMessage("Email");
<span class="field_title">Email: </span>
@Html.TextBox("Email")
@Html.ValidationMessage("Country");
<span class="field_title">Country Name: </span>
@Html.TextBox("Country")
<span class="field_title">About The Company: </span>
@Html.TextArea("Description")
<input type="submit" value="Create New Account">
}
</div>
<div class="get_connected_message">
<h1>Get Connected with your Customers</h1>
</div>
<div class="get_connected_message">
<h1>Build your profissional buisness world</h1>
</div>
<div class="clear"></div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
母版页代码
<!DOCTYPE html>
<html>
<head>
<title>MACE CRM</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="/workflow/sharedfiles/css/reset.css">
<link rel="stylesheet" type="text/css" href="/workflow/sharedfiles/css/main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</head>
<body>
@Html.Partial("~/Views/shared/header.cshtml")
<center id="body_container">
<div id="content">
@RenderBody()
</div>
</center>
@Html.Partial("~/Views/shared/footer.cshtml")
</body>
</html>
<link rel="stylesheet" href="/workflow/sharedfiles/css/smartDevicesVersion.css">
但遗憾的是我收到此错误
以下部分已定义但尚未呈现 对于布局页面&#34;〜/ Views / Shared / MasterPage.cshtml&#34;:&#34; Scripts&#34;。
所以请任何人帮我解决这个问题。
答案 0 :(得分:1)
您需要在“母版页”中声明该部分:
@RenderSection("Scripts", false)
可能最好将其包含在head
代码中。
否则,它不知道如何处理您的子视图中定义的Scripts
部分。
我设置为false
的第二个参数是该部分是否必需。如果您将此设置为true并且其中一个子页面不包含该部分,则会收到服务器错误,抱怨该部分缺失。