 Object Menu
|

| ReadAll |
| Type | Method |
| Return Value Type | String |
| Usage | object.ReadAll |
| Description | Reads the entire text file. |
| Example | Code: Set fso = CreateObject("Scripting.FileSystemObject") filename="c:\test\test.txt" Set tso = fso.OpenTextFile(filename,1,false,0) response.write tso.ReadAllResult: Hello World, This is a test of the ReadAll method. |
|