一聚教程网:一个值得你收藏的教程网站

热门教程

asp fso:只读一行文本

时间:2022-07-02 22:40:17 编辑:袖梨 来源:一聚教程网

asp fso:只读一行文本ReadLine

set t=fs.OpenTextFile("c:test.txt",1,false)
x=t.ReadLine
t.close
Response.Write("The first line in the file ")
Response.Write("contains this text: " & x)

这样我们就可以只读取一行了喽.下面来看看readall读取全部的内容

dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:test.txt")
fs.readall;

www.111com.net/asp/asp.html

热门栏目