ASP SkipLine 方法

asp skipline 方法

textstream 对象参考手册 完整的 textstream 对象参考手册

skipline 方法在读取 textstream 文件时跳过一行。

语法

textstreamobject.skipline

实例

<%
dim fs,f,t,x
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt")
f.writeline("line 1")
f.writeline("line 2")
f.writeline("line 3")
f.close

set t=fs.opentextfile("c:\test.txt",1,false)
t.skipline
x=t.readall
t.close
response.write("output after skipping the first ")
response.write(" line in the file: " & x)
%>

输出:

output after skipping the first line in the file: line 2
line 3

textstream 对象参考手册 完整的 textstream 对象参考手册
相关文章