Hi !
I've been using FtpLib for a few weeks now, but I just found an error that is beyong my understanding...
I'm accessing my FTP servers as showed in the doc :
```
using (FtpConnection ftp = new FtpConnection(detail.FtpServer, detail.FtpUsername, detail.FtpPassword))
{
ftp.Open();
ftp.Login();
}
```
And I'm getting a Win32Exception with error code 0x2eee. That error corresponds to "12014 ERROR_INTERNET_INCORRECT_PASSWORD - The request to connect and log on to an FTP server could not be completed because the supplied password is incorrect.".
The problem is that I tried successfully to connect with those information with FileZilla and Firefox.
I even tried with .Net's FtpWebRequest.
I can also access other FTP server or even the same server with another account without trouble.
The only one the keeps saying the password isn't ok is FtpLib with this specific password. Does anyone know why ? And how to correct it.
PS : I thought it might be because of special characters but I have no possibility to change it... (Special characters contained : "$à&!:?")
Comments: ** Comment from web user: Nanolenain **
Finally found the problem : it's pretty much what I thought. Somme characters aren't encoded as should be.
Simple solution : Encode password to ANSI.