最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp文件系统对象filesystemObject 实例
时间:2022-06-30 11:41:57 编辑:袖梨 来源:一聚教程网
下在我们来看看吧,这我们用fso来读取文件并进行换行操作哦。
<%cz = request("cz")
wjn = request("content")
''读文件
set fso = Server.Createobject("Scripting.FileSystemObject")
set file=fso.opentextfile(Server.mappath("tb/tb.htm"),1,False)
do while file.AtEndOfStream<>true
wjnr = wjnr + file.ReadLine() & chr(13)
loop
file.close
set file = nothing
set fso = nothing
%>