ASP Line 属性

asp line 属性

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

line 属性返回在 textstream 文件中的当前行号(从 1 开始)。

语法

textstreamobject.line

实例

<%
dim fs,f,t
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt",true)
f.writeline("hello world!")
f.writeline("how are you today?")
f.writeline("goodbye!")
f.close

set t=fs.opentextfile("c:\test.txt",1)
do while t.atendofstream=false
  response.write("line " & t.line & ": ")
  response.write(t.readline)
  response.write("
")
loop
t.close
%>

输出:

line 1: hello world!
line 2: how are you today?
line 3: goodbye!

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