ASP AtEndOfLine 属性

定义和用法

AtEndOfLine 属性返回一个布尔值。True 指示文件指针紧靠行末标记之前,否则返回 False 。

Note:此属性仅工作于以只读方式打开的 TextStream 对象。

语法:

  1. TextStreamObject.AtEndOfLine

实例

  1. <%
  2. dim fs,f,t,x
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. set f=fs.CreateTextFile("c:\test.txt")
  5. f.write("Hello World!")
  6. f.close
  7.  
  8. set t=fs.OpenTextFile("c:\test.txt",1,false)
  9. do while t.AtEndOfLine<>true
  10. x=t.Read(1)
  11. loop
  12. t.close
  13. Response.Write("The last character is: " & x)
  14. %>

输出:

  1. The last character of the first line in the text file is: !