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

本文共 1332 字,大约阅读时间需要 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 弹出窗口

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

转载于:https://www.cnblogs.com/zhangchenliang/archive/2008/03/04/1090388.html

你可能感兴趣的文章
2019年React学习路线图
查看>>
Google Docs API正式可用,可自动化文档任务和内容管理
查看>>
全面了解大数据“三驾马车”的开源实现
查看>>
GitHub宣布推出Electron 1.0和Devtron,并将提供无限制的私有代码库
查看>>
人工智能白热化,运维脱帽“背锅侠”
查看>>
Android中使PopupWindow显示在指定控件的上下左右!
查看>>
html中ul标签的优化
查看>>
Kurento安装与入门05——One to many video call
查看>>
[deviceone开发]-cnodejs论坛移动端App
查看>>
智能指针shared_ptr(effective modern c++笔记)
查看>>
Failed to validate a newly established connection异常
查看>>
关联对象 AssociatedObject 完全解析
查看>>
Windows下80端口被pid为4的System进程占用解决方法
查看>>
POST 后台404错误
查看>>
Ubuntu 解压zip文件名乱码问题解决
查看>>
动态规划
查看>>
Hibernate的延迟加载
查看>>
IE中input标签密码框与文本框宽度不一样问题
查看>>
【系统架构师修炼之道】(10):绪论——系统架构师的定义与职业素质
查看>>
Uber 开源地理可视化工具 Ketoper.gl,加速数据处理
查看>>