vbs 让ie不停的打开关闭
作者:cmscn 日期:2009-02-27
windows计划任务自动生成静态首页收藏
作者:cmscn 日期:2009-02-27
indexplan.vbs: 脚本程序,调用ie组建执行生成首页的程序这里强调的是必须打开ie,要用到ie的组建,遨游好像不行。然后把这个脚本程序添加到windows计划任务里,设置好执行时间间隔,看你首页跟新的快慢了,自己把握。
view plaincopy to clipboardprint?
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
ie.navigate("http://localhost:80/createindex.asp")-这里在服务器换成你的域名指向你的生成文件
ie.visible=0
view plaincopy to clipboardprint?
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
ie.navigate("http://localhost:80/createindex.asp")-这里在服务器换成你的域名指向你的生成文件
ie.visible=0
Tags: 生成
internetexplorer.application---初探
作者:cmscn 日期:2009-02-27
常用vbs集合
作者:cmscn 日期:2009-02-27
vbs调用bat隐藏运行窗口
作者:cmscn 日期:2009-02-27
vbs实现自动登陆网页
作者:cmscn 日期:2009-02-27
VBS脚本中常用的自定义函数
作者:cmscn 日期:2009-02-27
ASP 程序自动运行VBS解决方法
作者:cmscn 日期:2009-02-27
这要用到计划任务,首先假定你这个程序的地址为“http://1.0.0.8/a.asp”,那么你编辑如下内容:
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
ie.navigate("http://1.0.0.8/a.asp")
ie.visible=1
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
ie.navigate("http://1.0.0.8/a.asp")
ie.visible=1
Tags: 自动
首页生成htm
作者:cmscn 日期:2009-02-26
Asp定时执行操作、Asp定时读取数据库(网页定时操作详解)
作者:cmscn 日期:2009-02-26
Asp定时执行操作、Asp定时读取数据库(网页定时操作详解)
'----------------------版权信息---------------------------
'-----------Author:Vbell----------------------------------
'-----------Date:13:57 2008-5-19---------------------
'-----------Http://www.qqview.com---------------------
'------------------------------------------------------------
'----------------------版权信息---------------------------
'-----------Author:Vbell----------------------------------
'-----------Date:13:57 2008-5-19---------------------
'-----------Http://www.qqview.com---------------------
'------------------------------------------------------------
Tags: 定时