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

推荐订阅源

WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cloudbric
Cloudbric
P
Palo Alto Networks Blog
T
Threatpost
T
Tor Project blog
T
Tenable Blog
AWS News Blog
AWS News Blog
Project Zero
Project Zero
L
LangChain Blog
Cyberwarzone
Cyberwarzone
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
C
CERT Recently Published Vulnerability Notes
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Security Latest
Security Latest
云风的 BLOG
云风的 BLOG
I
Intezer
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
A
Arctic Wolf
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
MongoDB | Blog
MongoDB | Blog
aimingoo的专栏
aimingoo的专栏
K
Kaspersky official blog
Jina AI
Jina AI
N
News | PayPal Newsroom
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Recorded Future
Recorded Future
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Secure Thoughts
TaoSecurity Blog
TaoSecurity Blog
P
Privacy & Cybersecurity Law Blog
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
IT之家
IT之家
Forbes - Security
Forbes - Security
The Hacker News
The Hacker News
Last Week in AI
Last Week in AI
T
Threat Research - Cisco Blogs
Y
Y Combinator Blog

博客园 - 老弹

列表中,将列表字段缩略显示的样式 DIV+CSS页面布局,样式中区别苹果浏览器Safari VS.NET 2008 发布站点,不带那些随机字符的网站发布插件 下拉菜单被flash挡住的最好解决方法 html导出word - 老弹 - 博客园 全球网络概况 IE不执行js脚本的解决方法 ToString格式大全 - 老弹 - 博客园 SQL语句关键字UNION小知识 关于PayPal的支付的问题 运行 Dcpromo 架设Active Directory (活动目录 )时,出现" 无法创建 GPO " 错误信息 .NET读写INI文件 document.location 这个对象包含了当前URL的信息 强制将在表格中将英文字母换行的CSS样式,加在表格table标签中 无法让网页另存为的代码 屏蔽IE中当图片太大时出现的图片按钮组的CSS样式 列出一个表中的某个字段重复的记录 分割以逗号作为分割符号的字符串并插入到表中 求助 RemObjects SDK 与 Data Abstracr
VBScript判断客户端是否需要下载控件
老弹 · 2006-05-01 · via 博客园 - 老弹

VBScript判断客户端是否需要下载控件:

<script language="vbscript">

              sub windo(ip,port,loginname,pass,contact,initiator)

               Dim WebSetupObj2

               On Error Resume Next

               set WebSetupObj2=CreateObject("WebStarter.WebEngine2")          

               if WebSetupObj2 is nothing then

                     Dim WebSetupObj

                     On Error Resume Next 

                      set WebSetupObj = CreateObject("WebStarter.WebEngine")

                    if WebSetupObj is nothing then   

                           if MsgBox("本地没有安装客户端,点击Ok后进行自动下载!",vbYesNo,"8分钟视频")=vbYes then

                                   window.open("要下载的程序所在的地址及程序名称" )

                            end if

                     else

                            if MsgBox("客户端有重大更改,要继续必须重新安装客户端,是否下载安装?",vbYesNo,"8分钟视频")=vbYes then

                                          window.open("要下载的程序所在的地址及程序名称" )                                                

                            end if     

                     end if

                     set WebSetupObj = nothing   

               else       

                      WebSetupObj2.AddUpdateParam    "服务器IP","端口","/messenger/"

                     WebSetupObj2.UpdateFileVersion "VideoChat.exe","1.0.0.20"

                     WebSetupObj2.UpdateFileVersion "a.wav","NOVER"

                     if WebSetupObj2.StartUpdate then

                            WebSetupObj2.AddServerParam ip,port

                            WebSetupObj2.AddUserParam    loginname,pass,contact,initiator                  

                            WebSetupObj2.StartExe "VideoChat.exe"      

                     else

                            if MsgBox("升级程序失败,点击OK后重新下载!",vbYesNo,"8分钟视频")=vbYes then

                                   window.open("要下载的程序所在的地址及程序名称" )      

                            end if            

                     end if

              end if 

              set WebSetupObj2=nothing

        end sub 

</script>