Hi all,
I had problem when uploading files from my local computer to the remote computer. Upon executing UploadFile, it give me an error "Illegal characters in path". I had check that this file exist in my local C drive. Please help. My code is as follow :
ftpConnection1.Connect();
ftpConnection1.TransferType = EnterpriseDT.Net.Ftp.FTPTransferType.ASCII;
ftpConnection1.UploadFile("C:\testing.txt", "test.txt");
ftpConnection1.Close();
Thanks