我有一个ASP.NET页面(WebForm1),它打开一个模态对话框WebForm2(通过OpenForm2()js函数)进行进一步处理。关闭对话框后,我只需通过JavaScript更新UpdatePanel。现在问题是,在此js调用期间它不会阻止UI。
仅当我从服务器端调用OpenForm2 js方法(Button1_Click)时才会发生这种情况。由于UI已进入阻止模式,因此在关闭WebForm2时,它不会等待部分回发(JavaScript)的完成并取消阻止UI。
如果我直接在按钮的OnClientClick标签中调用OpenForm2 js函数(示例中的按钮2),它可以很好地阻止UI直到完成回发。
我尝试在add_endRequest中包装部分回发js代码,但在这种情况下,它一直调用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();
}
}
答案 0 :(得分:0)
使用
function refreshUpdatePanel() {
__doPostBack"<%= UpdatePanel1.ClientID %>", '1');
}
而不是
function refreshUpdatePanel() {
window.__doPostBack('UpdatePanel1', '1');
}
谢谢