FTP exe ASP.NET、C#2.0を開発中です。FTPサーバーがASP.NETで500エラーを返しました。C#
が、私は、FTPサーバーが間違って何
FtpWebRequest myReq;
FtpWebResponse myRes;
myReq = (FtpWebRequest)WebRequest.Create("ftp://test/aaa.txt");
myReq.Credentials = new NetworkCredential("xxxx", "xxxx");
myReq.Method = WebRequestMethods.Ftp.DownloadFile;
myRes = (FtpWebResponse)myReq.GetResponse(); // here error occured
500エラーを返しましたか?
500はサーバーエラーです。サーバーに依頼してください。サーバーのイベントログを調べます。 –