0
    <script src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script src="/resources/demos/external/jquery.bgiframe-2.1.2.js"></script>
    <script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>

if (Session["DtaMade1"] != null)
    {
       dtaMade = (string)Session["DtaMade1"];
       ScriptManager.RegisterStartupScript(Page, this.GetType(), "jscript", 
                                                 "alert('" + dtaMade + "');", true);
    }

我正在使用以下代码打开我的弹出窗口

但是它不起作用,而且我的所有控件都在更新面板中

4

2 回答 2

1

当您使用 Update Panel 时,将您的 javascript 函数放在 pageLoad 事件中,而不是 document.ready 或 window.onload 中。请检查链接。http://encosia.com/document-ready-and-pageload-are-not-the-same/

于 2013-02-26T06:14:19.193 回答
0

您只是在提醒您的dtaMade对象,脚本中没有提供打开弹出窗口的功能....

于 2013-02-26T06:14:33.267 回答