ASP AtEndOfLine 属性
asp atendofline 属性
完整的 textstream 对象参考手册atendofline 属性返回一个布尔值。true 指示文件指针紧靠 textstream 文件中行末标记之前,否则返回 false。
注意:该属性仅工作于以只读方式打开的 textstream 对象。
语法
textstreamobject.atendofline
实例
<%
dim fs,f,t,x
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt")
f.write("hello world!")
f.close
set t=fs.opentextfile("c:\test.txt",1,false)
do while t.atendofline<>true
x=t.read(1)
loop
t.close
response.write("the last character is: " & x)
%>
输出:
the last character of the first line in the text file is: !
dim fs,f,t,x
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt")
f.write("hello world!")
f.close
set t=fs.opentextfile("c:\test.txt",1,false)
do while t.atendofline<>true
x=t.read(1)
loop
t.close
response.write("the last character is: " & x)
%>
输出:
the last character of the first line in the text file is: !
完整的 textstream 对象参考手册
相关文章
- ASP 表单
- ASP ASPError 对象
- ASP AdRotator
- ASP 快速参考
- ASP Close 方法
- ASP ReadAll 方法
- ASP OpenAsTextStream 方法
- ASP Exists 方法
- ASP CacheControl 属性
- ASP ContentType 属性
- ASP Pics 属性
- ASP AddHeader 方法
- ASP QueryString 集合
- ASP Contents 集合
- ASP Contents.RemoveAll 方法
- ASP Abandon 方法
- ASP HTMLEncode 方法
- ASP CopyFolder 方法
- ASP DriveExists 方法
- ASP OpenTextFile 方法