69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

ASP Column 屬性

asp column 屬性

textstream 對(duì)象參考手冊(cè) 完整的 textstream 對(duì)象參考手冊(cè)

column 屬性返回輸入流中當(dāng)前字符位置的列號(hào)。

注意:該屬性在新行字符(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

textstream 對(duì)象參考手冊(cè) 完整的 textstream 對(duì)象參考手冊(cè)
相關(guān)文章