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

ASP ReadAll 方法

asp readall 方法

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

readall 方法可讀取整個(gè) textstream 文件,并以字符串返回結(jié)果。

注意:此方法不適合大型文件(會(huì)浪費(fèi)內(nèi)存資源)。

語法

textstreamobject.readall

實(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.readall
t.close
response.write("the text in the file is: " & x)
%>

輸出:

the text in the file is: hello world!

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