0

这就是我的对话框的生成方式:

$(function () {
    $(".btnDialog").click(function() {
        //e.preventDefault();
        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,
            overlay: {
                opacity: 0.5,
                background: "black"
            }
        }).width(650).height(550);
        return false;
    });
});

我在哪里以及如何添加任何服务器控件,例如<asp:label runat="server">< asp:button runat="server">???

4

1 回答 1

1

我认为您想要做的是创建一个新的 aspx 页面,例如 Dialog.aspx,并将您的asp:Labelasp:Button等控件放在该页面上。然后将 iframe 的 src 设置为 aspx 页面:

$('<iframe id="PDFDialog" frameborder="0" src="Dialog.aspx" />').dialog //...

于 2012-06-26T20:00:41.370 回答