Ask a Question related to ASP Database, Design and Development.
-
John #1
FileSystemObject
Hi!
I have written a sub routine which opens a file and write in it.
The code I wrote is the following:
Sub WriteToFile(afm,data)
Dim filename,objFSO,objFile
filename=afm
Set objFSO=CreateObject("Scripting.FileSystemObject")
Set objFile=objFSO.CreateTextFile(filename,true)
objFile.WriteLine data
objFile.Close
end sub
However, when I call the sub through the browser (I.E.) seems to take for
ages in order to handle the script.(when I remove the script evrything works
fine)
I Google it, and I found that maybe I should deactivate the anti-virus.I did
it.Nothing.
Any ideas?Please.The whole thing drives me crazy.I have done it before with
VB 6.0 and it worked pretty well.
Thnx John
John Guest
-
Problems with FileSystemObject
Hi, I'm really new to ASP and was following along with a tutorial in a book. When dealing with the FileSystemObject component, I found that... -
FileSystemObject protocol
Can anyone tell me which protocol (http/s, RPC) or service (w3svc) is used when using FileSystemObject in an ASP page? Thank you, -
Using FileSystemObject to write across the network
I'm pulling my hair out over this one. I've got a web page that I need to have write to another server across the network. The site in question does... -
Scripting.FileSystemObject
Hi everybody, found strange behavior in Scripting.FileSystemObject; only FileExists() method seems to work fine. All other methods cause browser... -
FileSystemObject not working?
If you have not yet hanged yourself, see here. http://www.aspfaq.com/2180 Ray at home -- Will trade ASP help for SQL Server help "Kathy"... -
Aaron Bertrand [MVP] #2
Re: FileSystemObject
What does this have to do with databases?
Please don't multi-post. See [url]http://www.aspfaq.com/5003[/url]
Aaron Bertrand [MVP] Guest



Reply With Quote

