嗨,我的页面有问题。我在同一页面中有一个视图页面和 2 个表单。
问题是我有一个主表单和另一个由 JQuery 显示的表单。我的问题是当我打开对话框,提交表单并返回视图时,对话框消失了。我不知道如何返回仍然会显示打开的对话框的结果。
我需要你的帮助!
以下是我在应用程序中使用的代码。
.CSTHML 表格
@using (Html.BeginForm("Login2", "Account", FormMethod.Post, new { @id = "loginForm" }))
{
<a id="submitlink" href="#" class="button button-large">Sign In</a>
}
// This is the pop-up dialog box
@using (Html.BeginForm("TroubleSubmit", "Account", FormMethod.Post, new { @id = "troubleSubmitForm" }))
{
<a id="troubleSubmitLink" href="#" class="button">OK</a>
}
查询
$('a#submitlink').click(function () {
$('#loginForm').submit();
});
$('a#troubleSubmitlink').click(function () {
$('#troubleSubmitForm').submit();
});
下面是处理对话框表单提交的控制器操作的代码:
public ActionResult SignInTrouble(some parameter...)
{
// some operation and validation here
return View(); // ??? What view will I return? When I return "Login" it will reload the page and close the dialog box.
}
同样,如何返回仍将显示对话框的视图