J
Jennifer
Hello
I get permission denied at line 4 in the following ASP Script
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("test.txt",true)
response.write "here"
f.write("Hello World!")
f.write("How are you today?")
f.close
set f=nothing
set fs=nothing
%>
I have write permission on the folder, but the folder is also secured for
FTP. Should I somehow pass FTP permissions in this script?
Kind Regards
Jennifer
I get permission denied at line 4 in the following ASP Script
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("test.txt",true)
response.write "here"
f.write("Hello World!")
f.write("How are you today?")
f.close
set f=nothing
set fs=nothing
%>
I have write permission on the folder, but the folder is also secured for
FTP. Should I somehow pass FTP permissions in this script?
Kind Regards
Jennifer