gpt4 book ai didi

asp.net-mvc-3 - 带有 Ajax.BeginForm 的 mvc 3 部分 View 不起作用(发布到新表单 arrgh)

转载 作者:行者123 更新时间:2023-12-03 18:18:19 24 4
gpt4 key购买 nike

我有一个带有 2 列的 mvc 3 表单。 The left column is a treeview and when a node is selected the div with id='partialView' is updated to show the details of that node.这似乎工作正常。
编辑表单(它是一个局部 View )被加载到带有 id='partialView' 的 div 中。

现在,当用户提交这个部分 View 时会出现问题......现在它确实回发到 Controller 和正确的方法但是结果不会返回到带有 id='partialView' 的 div,而是发布到一个新页面。

所以这是我希望局部 View 发布并返回替换现有局部 View 的场景。

这可能吗?

我在下面包含我的代码以供我的部分 View ...

@model DataModel.Code



@using (Ajax.BeginForm("Edit", "Code", new AjaxOptions {
UpdateTargetId = "partialView",
HttpMethod="POST"

}
)) {


@Html.ValidationSummary(true)
<fieldset>
<legend>Code</legend>


@Html.HiddenFor(model => model.CodeID)

<div class="editor-label">
@Html.LabelFor(model => model.Description)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Description)
@Html.ValidationMessageFor(model => model.Description)
</div>

<div class="editor-field">
@Html.EditorFor(model => model.Note)
@Html.ValidationMessageFor(model => model.Note)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.DateModified)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.DateModified)
@Html.ValidationMessageFor(model => model.DateModified)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.TopicID)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.TopicID)
@Html.ValidationMessageFor(model => model.TopicID)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.Special)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Special)
@Html.ValidationMessageFor(model => model.Special)
</div>

<div class="editor-label">
@Html.LabelFor(model => model.Html)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Html)
@Html.ValidationMessageFor(model => model.Html)
</div>

<p>
<input type="submit" value="Save" />

</p>



</fieldset>
}



<div>
@Html.ActionLink("Back to List", "Index")
</div>


@Html.Telerik().ScriptRegistrar().jQuery(true)

<script type="text/javascript">

$(document).ready(function () {



});


</script>

最佳答案

包括

<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")" type="text/javascript"></script> 

在你的 _Layout.cshtml

关于asp.net-mvc-3 - 带有 Ajax.BeginForm 的 mvc 3 部分 View 不起作用(发布到新表单 arrgh),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5891821/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com