中华考试网·阅读新闻
编程开发 > ASP > 文章内容

ASP编码教程:在ASP中不用模板生成HTML静态页直接生成.html页面

2015-4-11编辑:ljnbset

我们一般生成HTML静态页时,常常会事先做好一个模板,然后生成时调用模板文件。那么有没有办法不用模板,如一个正常的htmer.asp页面,直接生成为htmer.html页面呢?当然是可以的,而且非常简单,今天就教大家在ASP中不用模板生成HTML静态页的方法。

这里假设有一个htmer.asp动态页面,你想把它生成为HTML静态页面htmer.html,那么我们首先新建一个ASP程序文件htmer_to_html.asp(该文件就是用来将htmer.asp动态页面生成为静态页面htmer.html的),htmer_to_html.asp的具体代码如下所示:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

"post" action="">

"submit" value="生成html页"/>

<%

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

%>

ASP编码教程:response.end的优缺点介绍
咨询热线:4000-525-585(免长途费)