Tag: 生成预览模式: 普通 | 列表

ASP生成文件夹

sub MakeNewsDir(foldername)
  dim folderos,fileos,myfolder
  set fileos=createobject(fso_sys_var)
  if foldername<>"" then
    myfolder=server.mappath(foldername)
    if not fileos.folderexists(myfolder) then
      set folderos=fileos.createfolder(myfolder)

查看更多...

Tags: 生成

分类:Cms | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 495

windows计划任务自动生成静态首页收藏

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  

查看更多...

Tags: 生成

分类:Asp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 615

首页生成htm

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="Refresh"content="2;URL=index.htm"/>
<title>更新网页</title>
</head>

查看更多...

Tags: 生成

分类:Asp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 459
在index.htm用JS方式引用一个ASP文件
<script language="JavaScript" src="save.asp"></script>
在save.asp写判断程序~~
<%
Dim sDate,Fso,Fout
sDate = Application("缓存名称")
If IsEmpty(sDate) or CDate(sDate)<>Date() Then

查看更多...

Tags: 生成

分类:Asp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 451
<%
set fs=server.createobject("scripting.filesystemobject")
file=server.mappath("time.txt")
set txt=fs.opentextfile(file,1,true)
if not txt.atendofstream then
times=txt.ReadLine
Else

查看更多...

Tags: 生成

分类:Asp | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 450

首页生成html

在网址后面加上?createhtml=true可以生成html文件
如:
http://www.xxx.com/index.asp?createhtml=true

然后就可以直接访问静态网页

http://www.xxx.com/index.html

查看更多...

Tags: 生成

分类:Cms | 固定链接 | 评论: 6 | 引用: 0 | 查看次数: 655