中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

ASP Column 屬性


TextStream 對象參考手冊 完整的 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("<br> at character position: " & y)
%>

輸出:

The last character in the text file is: !
at character position: 12

TextStream 對象參考手冊 完整的 TextStream 對象參考手冊其他擴展