前台:<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
    
    </div>
        <asp:Timer ID="Timer1" runat="server" OnTick="Timer1_Tick" Interval="10000" Enabled="true">
        </asp:Timer>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
            <ContentTemplate>
                <cc1:PopupWin ID="PopupWin1" runat="server" Style="position: relative"  Text="aaText" Message="message" DragDrop="false" ActionType="RaiseEvents" AutoShow="true" Height="112px" Width="210px" />
                <asp:TextBox ID="TextBox1" runat="server" Style="position: relative"></asp:TextBox>
            </ContentTemplate>
        </asp:UpdatePanel>
    </form>
</body>
</html>后台:public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {    }
    protected void Timer1_Tick(object sender, EventArgs e)
    {
        ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.UpdatePanel1.GetType(), "msg", "pwespopup_winLoad();", true);
        this.UpdatePanel1.Update();
        TextBox1.Text = DateTime.Now.ToString("yy-MM-dd HH:ss:mm");
    }
}页面第一次加载后,正常弹出消息框,然后10秒刷新后,也弹出消息框,但是,网页状态栏上出现警告图标:
网页错误详细信息用户代理: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
时间戳: Wed, 18 Aug 2010 01:35:44 UTC
消息: 缺少对象
行: 272
字符: 1
代码: 0
URI: http://localhost:13006/PopupWin/Default2.aspx
然后页面就不再刷新了,停在那里,不知道是什么原因