发新话题
打印

如何将定时的ASP页面存为静态页面?

<%  
Set  fso  =  CreateObject("Scripting.FileSystemObject")  
'打开一个页面,如果没有则创建它  
txt_name="xxx.html"  
set  fsoFile  =  fso.OpenTextFile(server.mappath(txt_name),2,true)  
'开始写文件,按照HTML格式写,并从数据库中读取数据  
fsofile.writeline  "xxxxxxxx"  

%>

TOP

发新话题