hi
I was hoping that i could specify the path of the file on the users computer and then FTP to another server withou having to store it on the server which the script is running from.
eg
Dim flePosted as system.web.httpPostedFile
strFilePath as string = system.web.IO.getFilePath(flePosted)
from the above, i have the path of the file on the users computer, and I tried to ftp it to another server by
objFTP.Put(strFilePath, renamedfile.txt)
I get an "access to the file ...." is denied error with this, i guess it's a security feature really or else "rogue" users would just FTP all files on clients machine.
Right now, the way I have done it, is i upload the file unto the current server and then ftp if from the current server to another, afterwards deleting the file. is there a better way to do it?