You can access any actual file on the machine (if that's what you mena by "page") using the FileSystemObject.
But, to do this, you'd need to get a reference to the file name.
Set objFSO = CreateObject("Scripting.Fi
Set objNewFile = objFSO.GetFile(Server.Mapp
and now objNewFile is of a TextStream object type. You can use all of the following methods:
.Read
.ReadLine
.ReadAll
.Write
.WriteLine
Hope this helps?
Main Topics
Browse All Topics





by: ZvikaPosted on 2001-12-10 at 22:59:14ID: 6671704
How is that DLL being activate?
From where is it being called?
Where the result page is sent to?