Ultimele tutoriale de dezvoltare web
 

ASP Metoda ReadAll


<Complete Reference TextStream Obiect

Metoda ReadAll citește un întreg fișier TextStream și returnează rezultatul ca un șir de caractere.

Note: Această metodă nu este adecvată pentru fișiere de dimensiuni mari (se irosește resurse de memorie).

Sintaxă

TextStreamObject.ReadAll

Exemplu

<%
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!

<Complete Reference TextStream Obiect