我们一般生成HTML静态页时,常常会事先做好一个模板,然后生成时调用模板文件。那么有没有办法不用模板,如一个正常的htmer.asp页面,直接生成为htmer.html页面呢? 当然是可以的,而且非常简单,今天就教大家在ASP中不用模板生成HTML静态页的方法。 <form method="post" action=""> <textarea name="asp2html" style="display:none"><!--#include file="htmer.asp"--></textarea> <input type="submit" value="生成html页"/> </form> <% Dim Filename,Fso,Fout If Request.Form("asp2html")<>"" Then Filename="htmer.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 %> |