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

推荐订阅源

S
Secure Thoughts
Security Latest
Security Latest
Simon Willison's Weblog
Simon Willison's Weblog
O
OpenAI News
GbyAI
GbyAI
L
LINUX DO - 最新话题
A
Arctic Wolf
T
Tor Project blog
G
GRAHAM CLULEY
I
InfoQ
博客园_首页
IT之家
IT之家
The Register - Security
The Register - Security
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
K
Kaspersky official blog
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
U
Unit 42
PCI Perspectives
PCI Perspectives
量子位
P
Palo Alto Networks Blog
S
Securelist
T
Troy Hunt's Blog
博客园 - 【当耐特】
Recorded Future
Recorded Future
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
S
Security Affairs
Engineering at Meta
Engineering at Meta
T
The Blog of Author Tim Ferriss
博客园 - 聂微东
罗磊的独立博客
N
News and Events Feed by Topic
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
NISL@THU
NISL@THU
C
Cisco Blogs
T
Threatpost
有赞技术团队
有赞技术团队
Forbes - Security
Forbes - Security
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
The Exploit Database - CXSecurity.com
Cloudbric
Cloudbric
Cyberwarzone
Cyberwarzone
Google DeepMind News
Google DeepMind News
C
Cyber Attacks, Cyber Crime and Cyber Security

博客园 - standas

获取元素的绝对位置 Tomcat 支持中文和不区分大小写 - standas - 博客园 安装 Realtek HD Audio Driver 失败 CSS工具列表 Meta标签详解 changimg - standas - 博客园 Microsoft JET Database Engine 错误 '80040e09' FCKeditor 在上传中文文件时文件名出现乱码 用于asp.net还原与恢复sqlserver数据库的killspid存储过程 ASP.NET访问Oracle数据库的方法(转) oracle_net.msi下载地址 oracle常用函数 oracle连接字符串 网站被挂木马,中毒了 电脑出现怪问题 全球15个顶级技术类博客 十个未来发展趋势 java课程资源 Java环境搭建
网页中调用本地exe程序 - standas - 博客园
standas · 2007-11-10 · via 博客园 - standas

<!DOCTYPE   HTML   PUBLIC   "-//W3C//DTD   HTML   4.01   Transitional//EN"  
  "http://www.w3.org/TR/html4/loose.dtd">  
  <html>  
  <head>  
  <meta   http-equiv="Content-Type"   content="text/html;   charset=gb2312">  
  <title>网页中调用本地exe程序</title>  
  <SCRIPT   language=JavaScript>  
  function   Run(strPath)   {  
  try   {  
  var   objShell   =   new   ActiveXObject("wscript.shell");  
  objShell.Run(strPath);  
  objShell   =   null;  
  }  
  catch   (e){alert('找不到文件"'+strPath+'"(或它的组件之一)。请确定路径和文件名是否正确,而且所需的库文件均可用。')  
  }  
  }  
  </SCRIPT>  
   
  </head>  
  <body>   
  <a   href="#"   onclick="Run('C:/qq/qq2007/qq.exe')">qq  
  </a>  
 
  </body>  
  </html>  

   程序安装路径中的文件夹的名字最好不要有空格!