Hi,
I want to delete a file using this absolutely simple script:
It works without a problem on my webhosting server. But when I try it at home (WinXPPro, IIS 5.1), the browser obviously doesn't get an answer from the server, there is an endless loading of the script file in the status bar.
I don't know, where the problem is. Some file access rights are set wrongly?
Thanks for help, Ganymed
I want to delete a file using this absolutely simple script:
Code:
path = "deleteme.txt"
set fso=Server.CreateObject("Scripting.FileSystemObject")
fso.DeleteFile path,true
It works without a problem on my webhosting server. But when I try it at home (WinXPPro, IIS 5.1), the browser obviously doesn't get an answer from the server, there is an endless loading of the script file in the status bar.
I don't know, where the problem is. Some file access rights are set wrongly?
Thanks for help, Ganymed