Hello
I'm getting problems when i logon to FTP-servers with a password containing special characters. (For example åäö).
The code below generates an exception with the errormessage "NOT LOGGED IN. (replycode 530)"
Is there someway to avoid this problem?
Best regards Fredrik
Xceed.Ftp.Licenser.LicenseKey = "XXXX";
Xceed.Ftp.FtpClient ftp = new Xceed.Ftp.FtpClient();
ftp.Connect("XXX.XXX.XXX.XXX", 21);
try
{
ftp.Login("username", "åäö");
}
catch (Exception exc)
{
MessageBox.Show(exc.Message);
}
ftp.ChangeCurrentFolder("MYFOLDER");