.asp如何转化为.htm
只是想把存在的.asp转化为.htm
例如:www.********.com/index.asp
通过一段程序或者什么的转化为:www.*******.com/index.htm
麻烦帮忙一下,很急用哦!
这要用到ASP生成静态HTML的技术,
要空间支持FSO,先做好模版,根据你的INDEX.ASP做.
在数据发生变化,即后台操作完成时开始生成!
怎么生成刚刚前面有人发贴问过,找找看
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>首页转化为HTML页面</title>
</head>
<%
dim filename
filename="index.html"
if request("body")<>"" then
set fso = Server.CreateObject("Scripting.FileSystemObject")
set fout = fso.CreateTextFile(server.mappath(""&filename&""))
fout.write request.form("body")
fout.close
set fout=nothing
set fso=nothing
end if
%>
<body>
<form name="display" method="post" action="">
<textarea name="body" cols="20" rows="8"> <!--#include File="index.asp"--></textarea>
<input name="submit" type="submit" value="生成html">
</form>
</body>
</html>
请问这段代码有什么问题吗?
什么我在本地测试就可以,上传到服务器就连打都打不开!
错误提示:http://www.83633777.com/makehtml.asp