博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net AJAX 定期刷新页面,然后,在 Timer 的事件中弹出窗口
阅读量:5773 次
发布时间:2019-06-18

本文共 1257 字,大约阅读时间需要 4 分钟。

以下是 aspx 代码:

ContractedBlock.gif
ExpandedBlockStart.gif
Code
 1None.gif<body>
 2None.gif    <form id="form1" runat="server">
 3None.gif        <asp:ScriptManager ID="ScriptManager1" runat="server" />
 4None.gif        <div>
 5None.gif            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
 6None.gif
 7None.gif                <ContentTemplate>
 8None.gif                    <asp:Timer ID="Timer1" runat="server" Interval="5000" OnTick="Timer1_Tick">
 9None.gif                    </asp:Timer>
10None.gif                </ContentTemplate>    
11None.gif            </asp:UpdatePanel>
12None.gif            </div>
13None.gif    </form>
14None.gif</body>

以下为 aspx.CS 代码:

ContractedBlock.gif
ExpandedBlockStart.gif
Code
1None.gifprotected void Timer1_Tick(object sender, EventArgs e)
2ExpandedBlockStart.gifContractedBlock.gif    dot.gif{
3InBlock.gif        
4InBlock.gif            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);
5InBlock.gif          //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);
6InBlock.gif          //ScriptManager.RegisterStartupScript(UpdatePanel1, UpdatePanel1.GetType(), "", "alert('提示:产品添加成功!');if(confirm('是否继续添加?取消转到产品管理页')){alert('本页面继续添加')}else{open('productManage.aspx','_self');}", true);
7ExpandedBlockEnd.gif    }

aspx.CS 中:

第一种方法是用 showModalDialog 方法弹出模态窗口

第二种方法是用 window.open 弹出窗口

第三种方法是弹出窗口,不同的确认然后执行不同结果的示例

转载地址:http://ejaux.baihongyu.com/

你可能感兴趣的文章
[Angular 2] ng-model and ng-for with Select and Option elements
查看>>
Visio中如何让重叠图形都显示
查看>>
Tasks and Back stack 详解
查看>>
关于EXPORT_SYMBOL的作用浅析
查看>>
成功的背后!(给所有IT人)
查看>>
在SpringMVC利用MockMvc进行单元测试
查看>>
Nagios监控生产环境redis群集服务战
查看>>
Angular - -ngKeydown/ngKeypress/ngKeyup 键盘事件和鼠标事件
查看>>
Android BlueDroid(一):BlueDroid概述
查看>>
Java利用httpasyncclient进行异步HTTP请求
查看>>
循环多少次? 【杭电--HDOJ-1799】 附题+具体解释
查看>>
linux系统终端命令提示符设置(PS1)记录
查看>>
C++运算符重载
查看>>
【Web】URI和URL,及URL的编码
查看>>
宿舍局域网的应用
查看>>
html代码究竟什么用途
查看>>
oracle的substr函数的用法
查看>>
QT 数据库编程四
查看>>
npm下载包时代理配置
查看>>
全球十大理论
查看>>