精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP Read 方法

asp read 方法

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

read 方法從 textstream 文件中讀取指定數(shù)目的字符,并以字符串返回結(jié)果。

語法

textstreamobject.read(numchar)

參數(shù) 描述
numchar 必需的。需從文件中讀取字符的數(shù)目。

實(shí)例

<%
dim fs,f,t,x
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)
x=t.read(5)
t.close
response.write("the first five characters are: " & x)
%>

輸出:

the first five characters are: hello

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