ASP与PHP比较
作者:cmscn 日期:2009-02-28
ASP和PHP除了性能上的差距外,最大的功能区别就是:PHP上传文件、图片处理、伪静态(这个应该是apache的)、ASP的缓存等。其他的应用则属于非大众技术了。总得说来ASP被微软放弃更新,对于喜欢手写代码的人来说,确实是遗憾。
ASP有很多非大众技术,也就是一般人普通情况下用不到,也就介绍少,掌握得少,楼主这个就是。类似的还有server.transfer\request.form.count
一些系统函数(VB、VBS通用),比如FormatCurrency()
一些系统默认可用的组件,如创建mdb文件的ADOX.Catalog:(Set oCat = Server.CreateObject("ADOX.Catalog"):oCat.Create "Provider=Microsoft.Jet.Oledb.4.0;Data Source=" & Server.MapPath(sDataName):Set oCat = Nothing)
还有server.CreateObject("scripting.dictionary")
CreateObject("JRO.JetEngine")——压缩mdb数据库的代码中可看到
ASP有很多非大众技术,也就是一般人普通情况下用不到,也就介绍少,掌握得少,楼主这个就是。类似的还有server.transfer\request.form.count
一些系统函数(VB、VBS通用),比如FormatCurrency()
一些系统默认可用的组件,如创建mdb文件的ADOX.Catalog:(Set oCat = Server.CreateObject("ADOX.Catalog"):oCat.Create "Provider=Microsoft.Jet.Oledb.4.0;Data Source=" & Server.MapPath(sDataName):Set oCat = Nothing)
还有server.CreateObject("scripting.dictionary")
CreateObject("JRO.JetEngine")——压缩mdb数据库的代码中可看到
取远程文件大小
作者:cmscn 日期:2009-02-28
<%
Dim url,aSize
Url = "http://www.alixixi.com/download/xml.rar"
aSize = getRemoteFileSize(Url)
Response.Write Url & "<hr>" & aSize(0) & "<hr>" & aSize(1)
'---------------------------------------------------
'功能: ASP获取远程文件大小
Dim url,aSize
Url = "http://www.alixixi.com/download/xml.rar"
aSize = getRemoteFileSize(Url)
Response.Write Url & "<hr>" & aSize(0) & "<hr>" & aSize(1)
'---------------------------------------------------
'功能: ASP获取远程文件大小
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: 自动