<完整文本流对象参考
ReadAll方法则读取整个文本流文件并返回结果为一个字符串。
Note:此方法不适合大文件(它浪费内存资源)。
句法
TextStreamObject.ReadAll
例
<%
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)
%>
Output:
The text in the file is: Hello World!
<完整文本流对象参考