Hi Gang,
I have so far been unable to get the TextStream Object to write on Fat32.
I'm using Windows 2000 Pro Sp4. Scripts have write access and I even tried
giving IUSR user level writes and still when I tried loading the ASP page it
just hangs trying to create the file :(.
<%
Function WriteText(sPath , sText)
Dim fso, TextFile
Set fso = CreateObject("S cripting.FileSy stemObject")
Set TextFile = fso.CreateTextF ile(sPath, True)
TextFile.Write sText
TextFile.Close
End Function
WriteText "Test.htm", "Testing, Testing, 1, 2, 3"
%>
Can anyone tell me what I'm doing wrong? This must be a security issue, but
how and where?
Thanks,
Christian Blackburn
I have so far been unable to get the TextStream Object to write on Fat32.
I'm using Windows 2000 Pro Sp4. Scripts have write access and I even tried
giving IUSR user level writes and still when I tried loading the ASP page it
just hangs trying to create the file :(.
<%
Function WriteText(sPath , sText)
Dim fso, TextFile
Set fso = CreateObject("S cripting.FileSy stemObject")
Set TextFile = fso.CreateTextF ile(sPath, True)
TextFile.Write sText
TextFile.Close
End Function
WriteText "Test.htm", "Testing, Testing, 1, 2, 3"
%>
Can anyone tell me what I'm doing wrong? This must be a security issue, but
how and where?
Thanks,
Christian Blackburn
Comment