fileupload上的路径边成了服务器上的路径
我用fileUpload控件上传图片到服务器上,但是程序读取的文件路径是服务器上的,老是提示“未能找达到文件”,在自己的电脑上上传是没有问题的,请各位大侠帮忙看看怎么处理...
我用fileUpload控件上传图片到服务器上,但是程序读取的文件路径是服务器上的,老是提示“未能找达到文件”,在自己的电脑上上传是没有问题的,请各位大侠帮忙看看怎么处理
我把网页架在了自己的电脑上,在自己的电脑上可以正常上传,在其他的电脑上上传就找不到文件
回复:798766:
不是文件保存的问题,而是fileUpload读取错了我要上传的文件,原本上要上传客户机上的“c:\xxx\xxx.文件名”,现在程序读取的是服务器上的路径。。。
string imgUrl = ConfigurationManager.AppSettings["ImageUrl"];
string physicalPath = this.Page.MapPath(@imgUrl);//指定文件上传路径
// string physicalPath = this.Page.MapPath(@"..\..\UserImages");//指定文件上传路径
string fileName = fScheduleNm + fileType;
string path_fileName = physicalPath + fileName;
if (File.Exists(path_fileName)) {
File.Delete(path_fileName);
}
this.fpdUpload.PostedFile.SaveAs(path_fileName);
虽然没有解决,但还是谢了 展开
我把网页架在了自己的电脑上,在自己的电脑上可以正常上传,在其他的电脑上上传就找不到文件
回复:798766:
不是文件保存的问题,而是fileUpload读取错了我要上传的文件,原本上要上传客户机上的“c:\xxx\xxx.文件名”,现在程序读取的是服务器上的路径。。。
string imgUrl = ConfigurationManager.AppSettings["ImageUrl"];
string physicalPath = this.Page.MapPath(@imgUrl);//指定文件上传路径
// string physicalPath = this.Page.MapPath(@"..\..\UserImages");//指定文件上传路径
string fileName = fScheduleNm + fileType;
string path_fileName = physicalPath + fileName;
if (File.Exists(path_fileName)) {
File.Delete(path_fileName);
}
this.fpdUpload.PostedFile.SaveAs(path_fileName);
虽然没有解决,但还是谢了 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询