Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
2.4k views
in .NET FTP by
Hi,

I have a little problem using edtFTPnet. I have a user with a password contains special caracters like '

2 Answers

0 votes
by (162k points)
You need to change the encoding for the streams in FTPControlSocket.

Very soon we'll add a feature to do it programmatically, but it isn't there yet.

Hi,

I have a little problem using edtFTPnet. I have a user with a password contains special caracters like '
0 votes
by
Yes, I found it and made that changes :
//writer = new StreamWriter(stream, Encoding.GetEncoding("US-ASCII"));
writer = new StreamWriter(stream, Encoding.GetEncoding(1252));

(and the same for the reader stream).

And it works. Thanks :)

Categories

...