當然是可以的,而且非常簡單,今天就教大家在ASP中不用模板生成HTML靜態頁的方法。
這裡假設有一個htmer.asp動態頁面,你想把它生成為HTML靜態頁面htmer.html,那麼我們首先新建一個ASP程序文件htmer_to_html.asp(該文件就是用來將htmer.asp動態頁面生成為靜態頁面htmer.html的),htmer_to_html.asp的具體代碼如下所示:
復制代碼 代碼如下:
<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
%>