标题:[求助] asp转换成html
只看楼主
myruo
Rank: 1
等 级:新手上路
帖 子:89
专家分:0
注 册:2006-10-19
 问题点数:0 回复次数:1 
[求助] asp转换成html

重要把asp页面转换成html页面呀 而且有分页显示数据的功能请知道做个的朋友交交呀,很急!!谢谢

搜索更多相关主题的帖子: asp html 页面 数据 
2007-02-03 11:01
icecool
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:20
帖 子:1214
专家分:1366
注 册:2005-3-14
得分:0 
运用模板生成静态页例

生成代码:

<%
fname="template.htm"
dim replaceweb(2)
replaceweb(0)="haha"
replaceweb(1)="模版生成静态页面" '设置生成内容,实际中可从数据库读取
replaceweb(2)="模版生成静态页面实例"
set fso=server.createobject("scripting.filesystemobject")
set file=fso.opentextfile(server.mappath(fname),1,True)
FSOFileRead = file.ReadAll
set file=nothing
for i=0 to 2
FSOFileRead=Replace(FSOFileRead,"$HTMLWEB["&i&"]",replaceweb(i))
next
Set outfile = fso.CreateTextFile(Server.Mappath("index.htm"))
outfile.Write FSOFileRead
outfile.close
Set outfile=nothing
Set fso=nothing
%>

模板:template.htm

<html>
<head>
<title>$HTMLWEB[0]</title>
</head>
<body>
<center>
<h1>$HTMLWEB[1]</h1><hr>
$HTMLWEB[2]
</center>
</body>
</html>



看看以上代码,你会知道怎么做的了。现在博客是这么做的

http://toorup.3v.do
loading...
2007-02-03 21:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-119448-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.469767 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved