通用ASP生成HTML代码,无需读取模版
分类:程序开发 Tags: asp html 静态网页 评论:0 浏览:6396 最近更新时间:2008/3/24 12:27:33
最近在做一个饰品网站(http://www.yiwu-jewelry.cn/)涉及到生成HTML静态网页,没办法找了很多资料,不过也都大同小异,最后采用了如下代码来生成静态文章!该代码主要原理是通过浏览器传送变量,如:http://www.yiwu-jewelry.cn/show_jewelry_news.asp?id=7,代码中:if SaveFile("/news_yiwujewelry/"&id&".html","http://www.yiwu-jewelry.cn/show_jewelry_news.asp?id="&id&"") then 中"/news_yiwujewelry/"&id&".html",是你生成的文件和路径。http://127.0.0.1/news.asp?id="&id&""是asp的路径可以自己设置修改,其中 "&id&" 是读取浏览器的变量,网站网址改成自己的。使用方法,给你的文章列表添加一个连接,如 http://127.0.0.1/html.asp?id=7 ,7这个变量相信大家会调用吧,这样就能在/news_yiwujewelry目录下生成按照id排列的html文章了!可以到这里看效果:http://www.yiwu-jewelry.cn/jewelry_news.asp,http://www.yiwu-jewelry.cn/news_yiwujewelry/7.html以下是主要代码,把要改的代码改成自己的,保存成html.asp文件!
<%
Dim id
id = Request("id")
%>
<%
if SaveFile( "/news_yiwujewelry/"&id&".html","http://www.yiwu-jewelry.cn/show_jewelry_news.asp?id="&id&"" ) then
response.Write "<script language=javascript>alert('生成静态页面成功!');history.go(-1);</script>"
else
Response.write "没有生成!"
end if
function SaveFile(LocalFileName,RemoteFileUrl)
Dim Ads, Retrieval, GetRemoteData
On Error Resume Next
Set Retrieval = Server.CreateObject("Microso" & "ft.XM" & "LHTTP") '//把单词拆开防止杀毒软件误杀
With Retrieval
.Open "Get", RemoteFileUrl, False, "", ""
.Send
GetRemoteData = .ResponseBody
End With
Set Retrieval = Nothing
Set Ads = Server.CreateObject("Ado" & "db.Str" & "eam") '//把单词拆开防止杀毒软件误杀
With Ads
.Type = 1
.Open
.Write GetRemoteData
.SaveToFile Server.MapPath(LocalFileName), 2
.Cancel()
.Close()
End With
Set Ads=nothing
if err <> 0 then
SaveFile = false
err.clear
else
SaveFile = true
end if
End function
%>
附图:
最后一个疑问:这个只是生成一篇文章,不用模版的方式如何生成所有文章呢,就按这个原理?
-
• 图片自动按宽高比例缩小的js代码
• ASP Access数据库连接关闭与.ldb文件锁定解决方法
• 解决asp日语网站access数据库含日文出现“内存溢出”问题
• JS显示当前年月日时间分秒代码(时间不断变动)
• asp执行出错,直接忽略错误代码
• ASP判断手机号码输入是否正确正则代码
• ASP连接Access数据库绝对路径代码
• ASP在后一页刷新前一页代码
• 中国十大ASP CMS系统介绍
• 利用ASPJPEG为图片加水印及制作缩略图代码