欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP页面静态化批量生成代码分享(多种方法)

程序员文章站 2022-07-01 23:09:01
1、asp两种简单的生成静态首页的方法 为什么要生成静态首页? 1、如果你首页读取的数据库次数比较多,速度很慢,而且占用很多服务器资源。使用静态页面访问速度当然快多了 2、...
1、asp两种简单的生成静态首页的方法

为什么要生成静态首页?
1、如果你首页读取的数据库次数比较多,速度很慢,而且占用很多服务器资源。使用静态页面访问速度当然快多了
2、搜索引擎容易搜索到
3、如果程序出问题,也能保证首页能访问。
4、其他的太多,自己想:)
应用方式:
如果你的首页是index.asp,你可以生成index.htm (默认访问顺序必须是index.htm,index.asp)。这样访问者第一次访问到你的网站的时候打开的是index.htm 。你可以把网站首页的链接做成index.asp,这样从网站任何一个页面点击首页的链接出现的就是index.asp,这样保证的信息更新的及时性(毕竟index.htm需要每次手动更新)。
方法一:
直接将首页文件包含在表单文本框中,将首页代码最为数据提交,然后生成静态页面。
代码如下:
复制代码 代码如下:

<%
'------------------------------------------------------------
'使用表单提交生成静态首页的代码
'确保你的空间支持fso,且首页代码内容较少
'------------------------------------------------------------
dim content
content=trim(request.form("content"))
if content<>"" then
call makeindex()
end if
sub makeindex()
set fso = server.createobject("scripting.filesystemobject")
filen=server.mappath("index.htm")
set site_config=fso.createtextfile(filen,true, false)
site_config.write content
site_config.close
set fso = nothing
response.write("<script>alert('已经成功生成首页!')</script>")
end sub
%>
<form name="form1" method="post" action="">
<textarea name="content">
<!-- #i nclude file="index.asp" -->
</textarea>
<br>
<input type="submit" name="submit" value="提交">
</form>

缺点:
1、如果首页中包括<@ ..>标记,会提示出错。
2、如果首页代码较长,用表单无法提交过去(表单数据长度有一定的限制)。
解决方案:
1、去掉index.asp中的<@ >标记
2、使用ewebeditor,提交支持大数据(能自动分割)
优点:
可以在生成时对内容实时修改。
方法二:
直接使用xmlhttp获取index.asp的代码

复制代码 代码如下:

<%
'----------------------------------------------------------
'使用xmlhttp生成静态首页的代码
'curl 为你的首页地址,确保你的空间支持fso
'-----------------------------------------------------------
dim read,curl,content
curl="http://www.xx0123.com/index.asp"
read=gethttppage(curl)
if read<>"" then
content=read
call makeindex()
end if
sub makeindex()
set fso = server.createobject("scripting.filesystemobject")
filen=server.mappath("index.htm")
set site_config=fso.createtextfile(filen,true, false)
site_config.write content
site_config.close
set fso = nothing
response.write("<script>alert('已经成功生成首页!')</script>")
end sub
function gethttppage(url)
dim http
set http=server.createobject("microsoft.xmlhttp")
http.open "get",url,false
http.send()
if http.readystate<>4 then
exit function
end if
gethttppage=bytestobstr(http.responsebody,"gb2312")
set http=nothing
if err.number<>0 then err.clear
end function
function bytestobstr(body,cset)
dim objstream
set objstream = server.createobject("adodb.stream")
objstream.type = 1
objstream.mode =3
objstream.open
objstream.write body
objstream.position = 0
objstream.type = 2
objstream.charset = cset
bytestobstr = objstream.readtext
objstream.close
set objstream = nothing
end function
%>


2、模板分离批量生成

模板文件中要替换的内容均以{...}括起来
为力求简洁,去掉了错误处理代码(replace中要来替换的字符串参数不能为null值,当然fso也应该做错误检查)。
复制代码 代码如下:

<%
' ---------------------------------------------------------------------------------------------------------------------
' 出自: kevin fung http://www.yaotong.cn
' 作者: kevin fung 落伍者id:kevin2008,转载时请保持原样
' 时间: 2006/07/05落伍者论坛首发
' ----------------------------------------------------------------------------------------------------------------------
dim start '该变量为指针将要指向的记录集位置,通过参数动态获得
dim template '模板文件将以字符串读入该变量
dim content '替换后的字符串变量
dim objconn '连接对象
dim connstr '连接字符串
dim sql '查询语句
dim cnt:cnt = 1 '本轮循环计数器初始化
start = request("start") '获取本轮指针的开始位置
if isnumeric(start) then start = clng(start) else start=1
if start=0 then start = 1 '如果start
connstr = "provider = microsoft.jet.oledb.4.0;data source = " & server.mappath("database.mdb")
sql = "select * from table_name"
set objconn = server.createobject("adodb.connection")
objconn.open connstr
set rs = server.createobject("adodb.recordset")
rs.open sql,objconn,1,1 '打开数据集
rs.absoluteposition = start '最关键的一步,将指针指向start,start通过参数动态获得
template = gettemplate(server.mappath("template.html"))' template.html为模板文件,通过函数gettemplate读入到字符串,模板文件中要替换的内容均以{...}括起来
while not rs.eof and cnt<= 500 '500是设定一次请求生成页面的循环次数,根据实际情况修改,如果太高了,记录集很多的时候会出现超时错误
content = replace(template,"{filed_name_1}",rs("filed_name_1")) '用字段值替换模板内容
content = replace(content,"{filed_name_2}",rs("filed_name_2"))
......
content = replace(content,"{filed_name_n}",rs("filed_name_n"))
genhtml content,server.mappath("htmfiles/"&rs("id")&".html") '将替换之后的template字符串生成html文档,htmfiles为存储静态文件的目录,请手动建立
cnt = cnt + 1 '计数器加1
start = start + 1 '指针变量递增
rs.movenext
wend
if not rs.eof then '通过刷新的方式进行下一轮请求,并将指针变量start传递到下一轮
response.write "<meta http-equiv='refresh' content='0;url=?start="&start&"'>"
else
response.write "生成html文件完毕!"
end if
rs.close()
set rs = nothing
objconn.close()
set objconn = nothing
function gettemplate(template)'读取模板的函数,返回字符串,template为文件名
dim fso,f
set fso=createobject("scripting.filesystemobject")
set f = fso.opentextfile(template)
gettemplate=f.readall
f.close
set f=nothing
set fso=nothing
end function
sub genhtml(content,filename)'将替换后的内容写入html文档,content为替换后的字符串,filename为生成的文件名
dim fso,f
set fso = server.createobject("scripting.filesystemobject")
set f = fso.createtextfile(filename,true)'如果文件名重复将覆盖旧文件
f.write content
f.close
set f = nothing
set fso=nothing
end sub
%>