Ok...I have started working on this again...I am using FSO to write to a text file from a web page...the share that I am writing to is set to grant full access to "Everyone".
But I still receive an error when I attempt to open the text file for writing/reading...
Here is the code...
Set textDB = Server.CreateObject("Scripting.FileSystemObject"
Set rsText = textDB.OpenTextFile("\\ServerName\Public\Inventory\Inventory.txt",2,TRUE)
rsText.WriteLine("This is a test..."
rsText.Close
It errors out on the second line (where it opens the file) and returns
error '80070041'
Thats it - no more text other than what line it errored out on...anyone have any ideas what I am doing wrong?
Thanks...
But I still receive an error when I attempt to open the text file for writing/reading...
Here is the code...
Set textDB = Server.CreateObject("Scripting.FileSystemObject"
Set rsText = textDB.OpenTextFile("\\ServerName\Public\Inventory\Inventory.txt",2,TRUE)
rsText.WriteLine("This is a test..."
rsText.Close
It errors out on the second line (where it opens the file) and returns
error '80070041'
Thats it - no more text other than what line it errored out on...anyone have any ideas what I am doing wrong?
Thanks...