你是怎样来实现弹出窗口的?
建议用ShowModalDialog来实现....

解决方案 »

  1.   

    这个问题我也遇到过,你可能要自已写ajax代码才行,我是在窗口上放了个label显示提示信息,有点不帅,用ajax pro自已写无刷新页面会比较好点
      

  2.   

    System.Web.UI.ScriptManager.RegisterStartupScript(UpdatePanel1, this.GetType(), "good", js, false),其中js为你打开窗口的javascript代码
      

  3.   

    liuyun1987 
    我是用Page.RegisterStartupScript("alert","<script>window.alert('')</script>")
    你说的用ShowModalDialog如何实现?
      

  4.   

    如果对于Infragistics的WebAsyncRefreshPanel来说,弹出窗口又怎么写呢?
      

  5.   

    System.Web.UI.ScriptManager.RegisterStartupScript(UpdatePanel1, this.GetType(), "good", "<script>alert('提示信息');</script>", false);  这样就OK啦!
      

  6.   

    if()
    {
    alert('提示信息');
    return;
    }
    这样可以不?