黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP Column 屬性

asp column 屬性

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

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

注意:該屬性在新行字符(new line character)被寫(xiě)入之后為 1 (在其他字符被寫(xiě)入前)。

語(yǔ)法

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)文章