当前位置:  开发笔记 > 后端 > 正文

如何从JQuery对话框回发到另一个ASP .NET页面?

如何解决《如何从JQuery对话框回发到另一个ASP.NET页面?》经验,为你挑选了1个好方法。

我正在使用ASP .NET来显示一个包含几个输入字段的JQuery对话框.我现在需要将这些字段提交给一个操作方法,就像普通的HTML提交按钮在ASP .NET MVC应用程序上的工作方式一样.我该如何做到这一点?

这是我的表单数据:

所有的表单字段是必需的.

<%Html.BeginForm("AddUser", "User"); %>
<%Html.EndForm(); %>

"

这是我的脚本:

    $(function() {
        $("#dialog").dialog({
            bgiframe: true,
            height: 400,
            width: 600,
            modal: true,
            buttons: {
                'Create user account': function() {
                   $(this).dialog('close');
                },
                Cancel: function() {
                    $(this).dialog('close');
                }
            }
        });
    });

Tomas Aschan.. 5

在提交表单的代码中添加一行:

$(function() { 
    $("#dialog").dialog({ 
        bgiframe: true, 
        height: 400, 
        width: 600, 
        modal: true, 
        buttons: 
        { 
            'Create user account': function() {
                 $('#yourDialogFormID').submit(); // add this line
                 $(this).dialog('close'); 
             },
             Cancel: function() { 
                 $(this).dialog('close'); 
             }
       }
    });
 });

您可以通过为Html.BeginForm()方法提供参数来设置ID htmlAttributes(object如果我正确记住结构,则键入类型- 在IntelliSense中的重载方法中查找它).



1> Tomas Aschan..:

在提交表单的代码中添加一行:

$(function() { 
    $("#dialog").dialog({ 
        bgiframe: true, 
        height: 400, 
        width: 600, 
        modal: true, 
        buttons: 
        { 
            'Create user account': function() {
                 $('#yourDialogFormID').submit(); // add this line
                 $(this).dialog('close'); 
             },
             Cancel: function() { 
                 $(this).dialog('close'); 
             }
       }
    });
 });

您可以通过为Html.BeginForm()方法提供参数来设置ID htmlAttributes(object如果我正确记住结构,则键入类型- 在IntelliSense中的重载方法中查找它).

推荐阅读
mobiledu2402851373
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有