我应该更改哪些部分以使我的表单基于 Ajax 或基于 JQuery。(基于您在 Ajax 或 JQuery 之间的建议)代码在更改后将如何处理?
这是代码
@using (Html.BeginForm("Contact", "Home", FormMethod.Post, new { name = "send-contact",
id = "contactform1", @class="validateform" }))
{
@Html.AntiForgeryToken()
if (!String.IsNullOrEmpty(@ViewBag.SendResultMessage))
{
<text>
@section CustomScripts
{
<script type="text/javascript">
$("#myModal").Show({ ...});
</script>
}
</text>
}
@Html.TextBoxFor(m => m.Name)
<div class="validation">@Html.ValidationMessageFor(m => m.Name)</div>
<button class="b.." id="btnSubmit" type="submit">Submit message</button>
}
</div>
作为注释,这里我想显示一个“模态对话框”,如果使用 Ajax,应该设置UpdateTargetId
什么?
非常感谢任何帮助。