ASP AtEndOfLine 屬性
asp atendofline 屬性

atendofline 屬性返回一個(gè)布爾值。true 指示文件指針緊靠 textstream 文件中行末標(biāo)記之前,否則返回 false。
注意:該屬性僅工作于以只讀方式打開的 textstream 對象。
語法
textstreamobject.atendofline
實(shí)例
<%
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: !

相關(guān)文章
- 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 方法