M
Matthew Ferri
I'm using Windows 2000 SP4 with Office 2000 SP3 Frontpage to
write a small ASP routine that will create and delete
very small text files on the web.
I am using the routines I found on MSDN and Technet
for VBScript text file creation and deletion within ASP.
Everything works except for the CreateTextFile function.
Below is a sample fragment of one of many VBScript scripts
for file manipulation using ASP.
Dim objFSO, objCreatedFile, objOpenedFile
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objCreatedFile = objFSO.CreateTextFile("c:\TEMP.txt", True)
objCreatedFile.Close
Line number 4 always hangs my web page. It is the CreateTextFile
function that dies.
Is there another function or is there a known issue I am missing?
Everything else in my ASP code always works properly. This function is my
only problem.
Thank You in Advance.,
Matthew
write a small ASP routine that will create and delete
very small text files on the web.
I am using the routines I found on MSDN and Technet
for VBScript text file creation and deletion within ASP.
Everything works except for the CreateTextFile function.
Below is a sample fragment of one of many VBScript scripts
for file manipulation using ASP.
Dim objFSO, objCreatedFile, objOpenedFile
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objCreatedFile = objFSO.CreateTextFile("c:\TEMP.txt", True)
objCreatedFile.Close
Line number 4 always hangs my web page. It is the CreateTextFile
function that dies.
Is there another function or is there a known issue I am missing?
Everything else in my ASP code always works properly. This function is my
only problem.
Thank You in Advance.,
Matthew