以下是 aspx 代码:
![](/Images/OutliningIndicators/ContractedBlock.gif)
Code
1
<body>
2
<form id="form1" runat="server">
3
<asp:ScriptManager ID="ScriptManager1" runat="server" />
4
<div>
5
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
6![](/Images/OutliningIndicators/None.gif)
7
<ContentTemplate>
8
<asp:Timer ID="Timer1" runat="server" Interval="5000" OnTick="Timer1_Tick">
9
</asp:Timer>
10
</ContentTemplate>
11
</asp:UpdatePanel>
12
</div>
13
</form>
14
</body>
以下为 aspx.CS 代码:
![](/Images/OutliningIndicators/ContractedBlock.gif)
Code
1
protected void Timer1_Tick(object sender, EventArgs e)
2![](/Images/OutliningIndicators/ExpandedBlockStart.gif)
{
3
4
ScriptManager.RegisterClientScriptBlock(this.UpdatePanel1, UpdatePanel1.GetType(), "error", "window.showModalDialog('Pop.aspx', 'newwindow', 'dialogWidth:400px;DialogHeight=300px;center: yes;help:no;resizable:no;status:no');", true);
5
//ScriptManager.RegisterClientScriptBlock(this.UpdatePanel1, UpdatePanel1.GetType(), "error", "window.open ('Pop.aspx', 'newwindow', 'height=450, width=550, top=120,left=250, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no');", true);
6
//ScriptManager.RegisterStartupScript(UpdatePanel1, UpdatePanel1.GetType(), "", "alert('提示:产品添加成功!');if(confirm('是否继续添加?取消转到产品管理页')){alert('本页面继续添加')}else{open('productManage.aspx','_self');}", true);
7
}
aspx.CS 中:
第一种方法是用 showModalDialog 方法弹出模态窗口
第二种方法是用 window.open 弹出窗口
第三种方法是弹出窗口,不同的确认然后执行不同结果的示例