ASP Column 屬性
asp column 屬性

column 屬性返回輸入流中當(dāng)前字符位置的列號。
注意:該屬性在新行字符(new line character)被寫入之后為 1 (在其他字符被寫入前)。
語法
textstreamobject.column
實(shí)例
<%
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

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