我已经工作了2天来解决以下代码中的问题,并阅读了我在互联网上找到的所有帖子,但没有一个可以解决我的问题。
以下是我使用的代码:
在页面AdManager.aspx上,相关代码为:
<%@ Register TagPrefix="MB" Namespace="E6.WebUI.MessageBox" Assembly="E6.WebUI" %>
:
:
<asp:UpdatePanel ID="upnlContent" runat="server" UpdateMode="Conditional">
<ContentTemplate>
:
:
<td align="Center">
<MB:MessageBox ID="mbAssignResource" runat="server" CssClass="wizardLinkButtonYellow" DialogWidth="500" DialogHeight="370" DialogName="DialogBoxes/SelectResource.aspx" Text="Assign Resource" DefaultValue="" OnOnClose="mbAssignResource_OnClose"></MB:MessageBox>
</td>
:
:
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="tree" EventName="NodeClick" />
<asp:AsyncPostBackTrigger ControlID="btnDeleteNode" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="btnAddNode" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="popupAdPositionSelect" EventName="AddClick" />
<asp:AsyncPostBackTrigger ControlID="popupAdSelect" EventName="AddClick" />
<asp:AsyncPostBackTrigger ControlID="ddlViewBase" EventName="SelectedIndexChanged" />
</Triggers>
</asp:UpdatePanel>
:
:
在AdManager.aspx.cs中代码有:
:
:
namespace E6.WebUI {
public partial class AdManager : MasterBasePage {
:
:
protected void mbAssignResource_OnClose(object sender, EventArgs e) {
:
:
}
:
:
}
在MessageBox.cs中代码有:
:
:
[DefaultProperty("Text"), ToolboxData("<{0}:MessageBox runat=server></{0}:MessageBox>")]
public class MessageBox : WebControl, IPostBackEventHandler
{
:
:
[Description("The event which indicates when the dialog is closed.")]
public event EventHandler OnClose;
:
:
public void RaisePostBackEvent(String eventArgument)
{
if (OnClose != null)
{
OnClose(this, new MessageBoxEventArgs(eventArgument));
}
}
protected override void OnInit(EventArgs e)
{
// Guarantee that the __doPostBack function is defined
this.Page.ClientScript.GetPostBackEventReference(this, "");
:
:
}
:
:
}
在SelectResource.aspx中的代码有:
:
:
<td>
<asp:Button ID="SelectButton" runat="server" CssClass="wizardButton" ToolTip="Select" Text="Select"></asp:Button>
</td>
:
:
在SelectResource.aspx.cs中的代码有:
:
:
namespace E6.WebUI
{
/// <summary>
/// Summary description for SelectResource.
/// </summary>
public class SelectResource : DialogBase
{
:
:
private void InitializeComponent()
{
:
:
this.SelectButton.Click += new System.EventHandler(this.SelectButton_Click);
:
:
}
:
:
private void SelectButton_Click(object sender, System.EventArgs e)
{
:
:
DialogReturn(Resources.Items[Resources.SelectedIndex].Value);
}
}
}
在DialogBase.cs中代码有:
:
:
public class DialogBase : PageBase
{
public void DialogReturn(string returnValue)
{
// Set the value for the return object and close the dialog
StringBuilder script = new StringBuilder("<script language='javascript'>\n");
if (returnValue != null)
{
// clean return value
string cleanReturnValue;
cleanReturnValue = returnValue;
cleanReturnValue = cleanReturnValue.Replace("'", "\\'");
// once clean, append
script.Append("top.window.returnValue='");
script.Append(cleanReturnValue);
script.Append("';\n");
}
//script.Append(" if(window.chrome) { alert('chrome'); __doPostBack('ctl00$contentPH$mbAssignResource', top.window.returnValue); alert(top.window.returnValue); }");
//script.Append(" __doPostBack('ctl00$contentPH$mbAssignResource', top.window.returnValue); ");
script.Append("top.window.close();\n");
script.Append("</script>");
ScriptManager.RegisterStartupScript(this, this.GetType(), "MsgBox", script.ToString(), false);
}
:
:
}
MessageBox是一个弹出SelectResourcepage.aspx的用户控件。当用户单击SelectResourcepage.aspx上的选择按钮时,函数DialogReturn将向客户端发送javascript以关闭MessageBox窗口,这将从MessageBox.cs中的函数RaisePostBackEvent()触发onclose事件
适用于IE但不适用于Chrome。当我在函数RaisePostBackEvent中放置一个停止点。当IE中的弹出窗口关闭时,它会到达停止点。但是当Chrome中的弹出窗口关闭时,它不会达到停止点。 我在函数DialogReturn(注释掉的那些)中添加了一些javascript来查看脚本是否被执行。它确实如此,我可以在alert()中看到retrunValue。然后弹出窗口关闭。但是RaisePostBackEvent()没有开火。
此时我很无能为力。有什么建议吗?或解决这个问题? 这是一个很久以来存在的旧代码我的老板要我修复它,因为很多用户使用Chrome我们需要支持它。 谢谢 克里斯