ASP Column 属性
asp column 属性
完整的 textstream 对象参考手册column 属性返回输入流中当前字符位置的列号。
注意:该属性在新行字符(new line character)被写入之后为 1 (在其他字符被写入前)。
语法
textstreamobject.column
实例
<%
dim fs,f,t,x,y
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.atendofstream<>true
x=t.read(1)
y=t.column-1
loop
t.close
response.write("the last character in the text file is: " & x)
response.write("
at character position: " & y)
%>
输出:
the last character in the text file is: !
at character position: 12
dim fs,f,t,x,y
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.atendofstream<>true
x=t.read(1)
y=t.column-1
loop
t.close
response.write("the last character in the text file is: " & x)
response.write("
at character position: " & y)
%>
输出:
the last character in the text file is: !
at character position: 12
完整的 textstream 对象参考手册
相关文章
- ASP Cookies
- ASP Application 对象
- ASP TextStream 对象
- ASP AdRotator
- ASP 快速参考
- ASP AtEndOfLine 属性
- ASP Drive 属性
- ASP Size 属性
- ASP Delete 方法
- ASP SubFolders 集合
- ASP RemoveAll 方法
- ASP Expires 属性
- ASP Pics 属性
- ASP AppendToLog 方法
- ASP BinaryWrite 方法
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP DeleteFolder 方法
- ASP FileExists 方法
- ASP GetExtensionName 方法
- ASP GetTempName 方法