返回首页 | 关于我们 | 作品展示 | 网站建设 | 网站优化 | 网站策划 | 解决方案 | 联系我们 | 在线留言 | 需求提交
   


您当前的位置是:首页 > 网站建设 > asp动态页面生成html页面
网站建设知识
域名空间
网站建设
网页设计
网站推广
最新文章
网站改版建议计划
伪静态网站对网站优化的好处
域名备案正确拍照示例
网站备案的流程、网站备案需要哪些资料?
网站到底要不要开启https?
打造高质量的网站
好好建站网告诉您---北京做网站多少钱?
如何办理经营性备案?
北京公司如何选择公司网站域名?
Kindeditor 单独调用单张图上传增加预览
解析北京做网站注意事项
关于阿里云域名实名认证公告
北京做网站哪家强?这里有你想要的网站优化秘籍
企业为什么要做网站?
响应式网站设计图片处理7个技巧
为什么网站做得不好的原因?
网站被百度降权之后应该怎么办
分析竞争对手网站来做网站优化
关键词突然降到100名以外的原因分析
做网站时关键词优化的技巧
 

asp动态页面生成html页面

发布时间: 2010-10-16 21:33:20

本函数实现把asp页面产生的html代码保存成为一个html文件,这样就没有必要改动原来的页面就可以轻松

完成一个生成html的新闻系统了。<%
'当目标页面的包含文件即#include的页面里边存在response.End()的时候本程序有问题
'注意:本文件一定要放在filename指向的文件的同一目录下


以下为引用的内容:
dim hughchiu_rtcode
Function get_exe_code(filename)
dim execode
dim tmp_str
Dim re,re1,content,fso,f,aspStart,aspEnd
dim ms,m
execode = ""
set fso=CreateObject("Scripting.FileSystemObject")
set f=fso.OpenTextFile(server.mappath(filename))
content=f.ReadAll
f.close
set f=nothing
set fso=nothing

set re = new regexp
re.ignorecase = true
re.global = true
re.pattern = "<%@[^%]+%>"
content = re.replace(content,"")

re.global = false
re.pattern = "<!--s*#includes*files*=s*""([^""]+)""s*-->"
do
set ms = re.execute(content)
if ms.count<>0 then
set m = ms(0)
tmp_str = get_exe_code(m.submatches(0))
content = re.replace(content, tmp_str)
else
exit do
end if
loop
set m = nothing
set ms = nothing

re.pattern="^s*="
aspEnd=1
aspStart=inStr(aspEnd,content,"<%")+2

set re1=new RegExp
re1.ignorecase = true
re1.global = false
re1.pattern = "response.Write(.+)"

do while aspStart>aspEnd+1
execode = execode&vbcrlf&" hughchiu_rtcode = hughchiu_rtcode&"""&replace( replace(Mid(content,aspEnd,aspStart-aspEnd-2),"""",""""""), vbcrlf,


"""&vbcrlf&""")&""""&vbcrlf
aspEnd=inStr(aspStart,content,"%>")+2
tmp_str = Mid(content,aspStart,aspEnd-aspStart-2)

do
set ms = re1.execute(tmp_str)
if ms.count<>0 then
set m = ms(0)
tmp_str = re1.replace(tmp_str, " hughchiu_rtcode = hughchiu_rtcode&"&m.submatches(0))
else
exit do
end if
loop

set m = nothing
set ms = nothing

execode = execode& re.replace(tmp_str,"hughchiu_rtcode = hughchiu_rtcode&")

aspStart=inStr(aspEnd,content,"<%")+2
loop

set re1 = nothing
set re=nothing

execode = execode&vbcrlf&" hughchiu_rtcode = hughchiu_rtcode&"""&replace( replace(Mid(content,aspEnd), """", """"""), vbcrlf, """&vbcrlf&""" )

&""""&vbcrlf
get_exe_code = "<%"&execode&"%>"
End Function

 

function asp2html(filename)
dim code
code = replace( replace( replace( get_exe_code(filename), "hughchiu_rtcode = hughchiu_rtcode&"""""&vbcrlf, "" ), "<%", "" ), "%>", "" )
'response.Write(code)
execute(code)
'response.Write( hughchiu_rtcode )
asp2html = hughchiu_rtcode
end function
%>


使用范例:

以下为引用的内容:
set f=fso.CreateTextFile( server.mappath( "youpage.htm" ), true )
f.WriteLine( asp2html("youpage.asp") )
f.close
set f = nothing
set fso = nothing


文章出自:北京做网站公司-好好建站网 http://www.haohaoweb.cn 如转载请注明出处!
上一篇:ASP中利用application实现缓存
下一篇:div+css样式兼容性