0

enter code here我的 jquery ui 对话框包含一个 iframe,并有两个按钮选项,应用和关闭。这是我的 javascript 生成的:

$(function () {
    $(".btn").click(function() {
        var $this = $(this);
        $('<iframe id="PDFDialog"  frameborder="0" src="' + this.href + '" />').dialog({
            title: ($this.attr('title')) ? $this.attr('title') : 'External Site',
            autoOpen: true,
            width: 700,
            height: 600,
            modal: true,
            resizable: true,
            buttons: {
                Apply: function () {
                    $("#<%= applyHiddenBtn%>").click();                        
                    $(this).dialog("close");
                },
                Close: function () {
                    $(this).dialog("close");
                }
            }
        }).width(650).height(550);
        return false;
    });
});

我不确定如何执行我为对话框按钮“应用”准备的代码。作为尝试<asp:Button runat="server" ID="applyHiddenBtn" OnClick="applyHiddenBtn_Click"/>,我尝试同时触发另一个服务器按钮。

目标是触发这个:

Sub applyHiddenBtn_Click(sender As Object, e As EventArgs)
    lblTest1.Text = "HelloWorld!!!1!"
End Sub

请问有什么帮助吗?

4

1 回答 1

0

以下将对执行POST您的处理程序的服务器执行applyHiddenBtn

__doPostBack('applyHiddenBtn', '');

http://weblogs.asp.net/yousefjadallah/archive/2010/06/27/insure-that-dopostback-function-implemented-on-the-page.aspx

于 2012-06-28T18:55:01.343 回答