为了提高用户的访问速度,通常会生成html页面,这里由fso来完成的。使用的方法
<%
Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
filename=server.mappath("./")&"\text.html"
Set MyTextFile=MyFileObject.CreateTextFile(filename)
str="欢迎光临ASP编程网!!"
MyTextFile.WriteLine(str)
response.write "完成在当前目录下新建text.html文件"
MytextFile.Close
%>