S
Suchi
Hi all:
I want to read a textfile from an ASP program.
My program is like this:
Set fso = CreateObject("Scripting.FileSystemObject")
workFile=http://localhost/Readme.txt)
Set textFile = FSObj.OpenTextFile(workFile)
lines = split(textFile.ReadAll, VBCrLf)
textFile.Close
Set textFile = nothing
Set fso = nothing
for index = 0 to UBound(lines)
Response.write lines(index)
next
But the program is crashing the IIS.
Think this is related to permission problem. I gave full permission to all
user accounts
in the system. still not working
Can any one help me?
I want to read a textfile from an ASP program.
My program is like this:
Set fso = CreateObject("Scripting.FileSystemObject")
workFile=http://localhost/Readme.txt)
Set textFile = FSObj.OpenTextFile(workFile)
lines = split(textFile.ReadAll, VBCrLf)
textFile.Close
Set textFile = nothing
Set fso = nothing
for index = 0 to UBound(lines)
Response.write lines(index)
next
But the program is crashing the IIS.
Think this is related to permission problem. I gave full permission to all
user accounts
in the system. still not working
Can any one help me?