|网络加速软件|网络加速网关|游戏加速|网站加速|上网加速|电信加速|网通加速|铁通加速|移动加速|联通加速|教育网加速|

字体: | 推荐给好友 上一篇 | 下一篇

ASP生成静态htm页面基本代码

发布: 2007-1-04 21:19 | 作者: 千渡 | 来源: | 查看: 19次

以下虚线框内为mk.asp文件的具体代码:
--------------------------------------------------------------------------------
<%
filename="test.htm"
if request("body")<>"" then
set fso = Server.CreateObject("Scripting.FileSystemObject")
set fout = fso.CreateTextFile(server.mappath(""&filename&""))
fout.write "标题(title):" & request.form("title") & "<br>"
fout.write "内容(body):" & request.form("body")
fout.close
set fout=nothing
set fso=nothing
end if
%>
<form name="form1" method="post" action="">
<input name="title" size=18><br>
  <textarea name="body"></textarea>
  <br>
  <br>
  <input type="submit" name="Submit" value="生成">
</form>

--------------------------------------------------------------------------------
然后在浏览器输入mk.asp这个页面,填写完毕后,就会生成test.htm这个文件,里面的内容就是你刚才填写的。

 

评分:0

我来说两句

seccode