360degreehosting
IS-IT--Management
Hello,
I have a Windows 2003 Server, IIS, ASP installed/enabled all in a default installation and no special tweaking.
FSO isn't working on correctly and I'm sure it's something simple.
Here is a simple test that returns "false" when it should return "true" because I have verified that the test file is there.
i use the same exact code on 2 other servers that were setup the same way and the test file exists and the results are returned "true" like I expect.
I'm just using this as a simple test because the script i'm actually writing wasn't working and i wanted to eliminate anything complicated.
Please let me know what to check or tweak for FSO to function properly.
Regards,
Steve
I have a Windows 2003 Server, IIS, ASP installed/enabled all in a default installation and no special tweaking.
FSO isn't working on correctly and I'm sure it's something simple.
Here is a simple test that returns "false" when it should return "true" because I have verified that the test file is there.
Code:
filename="c:\test\test.html"
Set fso = CreateObject("Scripting.FileSystemObject")
response.write fso.fileExists(filename)
i use the same exact code on 2 other servers that were setup the same way and the test file exists and the results are returned "true" like I expect.
I'm just using this as a simple test because the script i'm actually writing wasn't working and i wanted to eliminate anything complicated.
Please let me know what to check or tweak for FSO to function properly.
Regards,
Steve