我这里提供一个简单的不用模板可以直接生成HTML静态页的方法.
如一个正常的index.ASP动态页面,
新建一个文件 makeasp2html.asp
<form method="post" action="">
<textarea name="asp2html" style="display:none"><!--#include file="index.asp"--></textarea>
<input type="submit" value="生成html页"/>
</form>
<%
If request.Form("asp2html")<>"" then
filename="index.html"
set fso = Server.CreateObject("Scripting.FileSystemObject")
set fout = fso.CreateTextFile(server.mappath(""&filename&""))
fout.write request.form("asp2html")
fout.close
set fout=nothing
set fso=nothing
end if
%>
这样index.html文件就生成了,连模板都用不着,只要服务器要支持FSO,将正常情况下使用的ASP文件读取到textarea里就可以了。
ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日ASP编码教程:asp缓存的分类
[ASP]2015年4月15日ASP编码教程:何谓ASP缓存/为什么要缓存
[ASP]2015年4月15日ASP编码教程:asp实现的sha1加密解密代码
[ASP]2015年4月15日ASP编码教程:asp执行带参数的sql语句实例
[ASP]2015年4月14日