Hi,
I am writing an ASP script to create a file on the server and then
upload it to an FTP site. (I am creating a shopping engine file and
then have to put it up on the shopping engine's ftp site.) How can I
upload the file to the ftp site? I don't think that a regular
upload/download component/method that is used for uploading files from
via a webbrowser to the server is going to work. I looked all over
online and there are a few different free scripts that people are
using. One of which is from Jeff Mastry - FTP.WSC with Shell.WSC. When
I register those two components on my machine and try to do the
FTPExecute, I am getting Permission Denied - I have no idea on which
part of the process that the script does its getting that. Does anyone
have any ideas?
Here is my sample script:
'Dim oFTP
'Set oFTP = CreateObject ("FTP.WSC")
'With oFTP
' .Host = "ftp.abc.com"
' .Username = "username" ' default it anonymous
' .Password = "password" ' default is also anon (e-mail address)
'
' .FtpExecute "put c:/data.txt"
'End With
'Set oFTP = Nothing

If anyone has any ideas, it would be greatly appreciated.
Thanks,
Bayla