1

我有一个 ASP.NET 页面(WebForm1),它打开一个模式对话框 WebForm2(通过 OpenForm2() js 函数)以进行进一步处理。关闭对话框后,我只需通过 JavaScript 更新 UpdatePanel。现在的问题是,在这个 js 调用期间,它不会阻塞 UI。

仅当我从服务器端 (Button1_Click) 调用 OpenForm2 js 方法时才会发生这种情况。由于 UI 已经进入阻塞模式,在关闭 WebForm2 时,它不会等待部分回发 (JavaScript) 完成并解除对 UI 的阻塞。

如果我直接在按钮的 OnClientClick 标记(示例中的按钮 2)中调用 OpenForm2 js 函数,它会运行良好并一直阻塞 UI 直到回发完成。

我尝试将部分回发 js 代码包装在 add_endRequest 中,但在这种情况下,它会一直调用 refreshUpdatePanel() js 方法,因此阻止/解除阻止 UI 会继续进行。这可能是由于在这种情况下在页面上使用了两个 add_endRequest 吗?

在这方面的任何帮助都将受到高度赞赏。

注意:我使用 jQuery blockUI 在部分回发期间阻止页面。

WebForm1 页面的代码示例如下。(WebForm2 aspx 页面只有一个关闭对话框的按钮和一个相关的 js 功能)。

WebForm1.aspx

<head runat="server">
    <title></title>
    <script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
    <script src="js/jquery.blockUI.js" type="text/javascript"></script>
    <script type="text/javascript">
        function OpenForm2() {
            var url = "WebForm2.aspx";
            var width = 950;
            var height = 455; // screen.availHeight - (120 + 65);

            // open modal dialog
            obj = window.showModalDialog(url, window, "dialogWidth:" + width + "px; dialogHeight:" + height + "px; center:yes");

            // partial postback to reflect the changes made by form2
            refreshUpdatePanel();
            //Sys.WebForms.PageRequestManager.getInstance().add_endRequest(refreshUpdatePanel);
            // ** here it doesn't wait for the completion and unblocks the UI **
        }

        function refreshUpdatePanel() {
            //window.__doPostBack('UpdatePanel1', '1');
            // a timeout/delay before a client side updatepanel postback. That compelled the UI to go in blocking again with a little screen flickering.
            setTimeout('__doPostBack("<%= UpdatePanel1.ClientID %>", "1")', 0);
        }

        $(document).ready(function () {
            var prm = Sys.WebForms.PageRequestManager.getInstance();
            prm.add_initializeRequest(InitializeRequest);
            prm.add_endRequest(EndRequest);

            $.blockUI.defaults.css = {};
            function InitializeRequest(sender, args) {
                // Whatever you want to happen when the async callback starts
                $.blockUI();
            }
            function EndRequest(sender, args) {
                // Whatever you want to happen when async callback ends
                $.unblockUI();
            }
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server" OnLoad="UpdatePanel1_Load">
        <ContentTemplate>
            <asp:Label ID="Label2" runat="server" Text=""></asp:Label><br />
            <asp:Button ID="Button1" runat="server" Text="Button 1" OnClick="Button1_Click" />
            <asp:Button ID="Button2" runat="server" Text="Button 2" OnClientClick="OpenForm2();return false;" />
        </ContentTemplate>
    </asp:UpdatePanel>
    </form>
</body>

WebForm1.aspx.cs

protected void Button1_Click(object sender, EventArgs e)
{
    // some server side processing here
    System.Threading.Thread.Sleep(1000);

    // then calling javascript function to open form2 as modal
    ScriptManager.RegisterClientScriptBlock(UpdatePanel1, UpdatePanel1.GetType(), "Button1Click", "OpenForm2();", true);
}

protected void UpdatePanel1_Load(object sender, EventArgs e)
{
    string parameter = Request["__EVENTARGUMENT"];
    if (parameter == "1")
    {
        System.Threading.Thread.Sleep(3000);
        Label2.Text = DateTime.Now.ToString();
    }
}
4

1 回答 1

0

利用

 function refreshUpdatePanel() {
        __doPostBack"<%= UpdatePanel1.ClientID %>", '1');
    }

代替

 function refreshUpdatePanel() {
        window.__doPostBack('UpdatePanel1', '1');
    }

谢谢你

于 2013-02-21T09:31:40.943 回答