标签:alt exp red 需要 har false col image 解决方法
在自页面中加入:
@section scripts{
<script>
$("#LinkUrl").click(function () {
var linkUrl = "/Home/UserIndex";
if ($("#userHome").length > 0) {
linkUrl = "/Home/IndexP";
}
location.href = linkUrl;
return false;
});
</script>
}
报以下错误。
解决方法:需要在模板也中加上
@RenderSection("scripts", false)
MVC--以下各节已定义,但尚未为布局页“~/Views/Shared/_LayoutIndex.cshtml”呈现:“scripts”。
标签:alt exp red 需要 har false col image 解决方法
原文地址:http://www.cnblogs.com/qingtianoye/p/7530703.html