我是 FTP 和 asp.net 的新手,我的代码仅在本地主机测试期间有效,但是在 go-daddy 的实时测试期间出现错误。任何帮助都会非常感谢。
我目前托管 2 个网站,所有页面和代码都在 AMUS 文件夹中
Unable to connect to the remote server
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Net.WebException: Unable to connect to the remote server
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[WebException: Unable to connect to the remote server]
System.Net.FtpWebRequest.GetRequestStream() +839
DBMiddleTier.addImageFTP(FileUpload file) +360
Admin_CrudOperation.imgAddProduct_Click(Object sender, ImageClickEventArgs e) +96
System.Web.UI.WebControls.ImageButton.OnClick(ImageClickEventArgs e) +115
System.Web.UI.WebControls.ImageButton.RaisePostBackEvent(String eventArgument) +120
System.Web.UI.WebControls.ImageButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5563
我的代码
//method to add image ftp
public string addImageFTP(FileUpload file)
{
string filename = Path.GetFileName(file.FileName);
Bitmap src = Bitmap.FromStream(file.PostedFile.InputStream) as Bitmap;
Bitmap result = new Bitmap(src, 300, 300);
string saveName = savePath + filename;
result.Save(saveName, ImageFormat.Jpeg);
System.Net.FtpWebRequest request = System.Net.WebRequest.Create("ftp://***.***.***.*/AMUS/images/" + filename) as System.Net.FtpWebRequest;
//this example assumes the FTP site uses anoymous login on
//NetWorkCredentials provides credentials for password-based authentication such as digest, basic, NTLM
request.Credentials = new System.Net.NetworkCredential("Username", "Password");
//Copy the contents of the file to the request stream
byte[] fileContents = null;
if (file.HasFile)
{
//fileContents = FileUploadControl.FileBytes;
fileContents = File.ReadAllBytes(saveName);
}
else
{
string res = "you need to provide a file";
return res;
}
request.Method = System.Net.WebRequestMethods.Ftp.UploadFile;
request.ContentLength = fileContents.Length;
//GetReequestStream: retrieves the stream used to upload data to an FTP server.
Stream requestStream = request.GetRequestStream();
requestStream.Write(fileContents, 0, fileContents.Length);
requestStream.Close();
return "Successful Upload";
}