ASP中生成文本文件的两种方式

2018-09-06 12:15

阅读:405

  ASP里两种常用的生成文件的方式是:利用ADODB.Stream生成文件和利用Scripting.FileSystemObject生成文件

1、Scripting.FileSystemObject生成文件方法:
复制代码 代码如下:<%
Setfso=CreateObject(Scripting.FileSystemObject)
File=Server.MapPath(要生成文件路径和文件名.htm)
Settxt=fso.OpenTextFile(File,8,True)
data1=文件内容用WriteLine方法生成文件
txt.WriteLinedata1
data2=文件内容用Write方法生成文件
txt.Writedata2
txt.Close
txt.fso
%>

2、ADODB.Stream生成文件方法:
复制代码 代码如下:<%
DimobjAdoStream
SetobjAdoStream=Server.createObject(ADODB.Stream)
objAdoStream.Type=1
objAdoStream.Open()
objAdoStream.Write(文件内容)
objAdoStream.SaveToFile要生成文件路径和文件名.htm,2
objAdoStream.Close()
%>


评论


亲,登录后才可以留言!