FtpWebRequest webReq = (FtpWebRequest)WebRequest.Create(UpdaterUrl);
webReq.Method = WebRequestMethods.Ftp.DownloadFile;
webReq.UsePassive = false;
webReq.UseBinary = true;
webReq.EnableSsl = false;
webReq.Credentials = new NetworkCredential(GlobalVar.m_strFtpUserName, GlobalVar.m_strFtpUserPassword);
                   
FtpWebResponse webRes = (FtpWebResponse)webReq.GetResponse();在得相应的时候报出了    The data connection was made from an address that is different than the address to which the FTP connection was made.
这个异常 急待解决 请各位大虾帮忙解决下。