惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

SecWiki News
SecWiki News
Microsoft Azure Blog
Microsoft Azure Blog
V2EX - 技术
V2EX - 技术
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
博客园_首页
月光博客
月光博客
N
News | PayPal Newsroom
The Cloudflare Blog
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
量子位
G
Google Developers Blog
T
Troy Hunt's Blog
博客园 - Franky
腾讯CDC
S
Security Affairs
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
S
Security @ Cisco Blogs
www.infosecurity-magazine.com
www.infosecurity-magazine.com
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
D
DataBreaches.Net
Recorded Future
Recorded Future
H
Heimdal Security Blog
V
Vulnerabilities – Threatpost
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
D
Docker
P
Proofpoint News Feed
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
Secure Thoughts
Engineering at Meta
Engineering at Meta
PCI Perspectives
PCI Perspectives
宝玉的分享
宝玉的分享
The Hacker News
The Hacker News
有赞技术团队
有赞技术团队
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Cloudbric
Cloudbric
Microsoft Security Blog
Microsoft Security Blog
G
GRAHAM CLULEY
MyScale Blog
MyScale Blog
L
LINUX DO - 热门话题
雷峰网
雷峰网
Know Your Adversary
Know Your Adversary

博客园 - tiger8000

winserver2012 下安装 sqlserver2008 sql 实现学生成绩并列排名算法 asp.net 一次性提交大量数据,服务器会报错,要在 web.config 中设置一下 同一服务器上多个版本的 sqlserver ,如何连接,改变某一实例的端口号 安装SQl 2008为SQL Server代理服务提供的凭据无效 winserver2008 R2 64位 企业版 , IIS 配置运行 asp+access 网站 根据不同分辨率加载不同 css 样芪表 获取屏幕分辩率及客户端信息 用 javascript 脚本,网站判读来访者是手机还是电脑 如何使用 aspnetpager Lodop6 以上打印控件使用,详参考自带说明文档,打印样式及文字大小要特殊设置一下 win7操作系统32位或是64位系统上安装 sql2005 点滴 oracle 11g 及 plsqldeveloper 相关操作 窗体程序 防止重复打开子窗体 asp 下 ewebeditor 上传图片功能,在IE7,IE8 及更高版本上失效解决方法 StringBuilder 在后台动态输出 html 代码 Oracle 建表空间 起动停止 Oracle11g 三个服务的批处理写法 C# 捕捉键盘事件
在后台 .cs 中执行前台的js 函数
tiger8000 · 2013-10-27 · via 博客园 - tiger8000
        <script type="text/javascript" language="javascript"> 
<!--
    function openChild(num, num2) {

        var k = window.showModalDialog("pop.aspx?userid=" + num + "&usertel=" + num2, window, "dialogWidth:808px;status:no;dialogHeight:540px");
        if (k == 1)//判断是否刷新 
        {
            alert('刷新');
            window.location.reload();
        }
    }
  
    //--> 
</script> 

.cs

 protected void Button1_Click(object sender, EventArgs e)
        {
            string isFresh = "1";
            string script = string.Format("openChild('{0}', '{1}');", isFresh, "13943288280");
            ScriptManager.RegisterStartupScript(this, this.GetType(), "Message", script, true);
        }