未能找到路径“C:\Documents and Settings\Administrator\桌面\bxshw\newproduct\ 怎么回事哦
//取得要保存服务器路径(绝对)string path = Server.MapPath("../newproduct");//文件名的路径
string fname = File10.PostedFile.FileName;//获得文件名
//得到扩展名
fileName = fname.Substring(fname.LastIndexOf(@"\") + 1);
fname = fname.Substring(fname.LastIndexOf("."));
//保存上传的图片到指定的目录
path = path + "\\" + fileName;
File10.PostedFile.SaveAs(path);
大家看我这代码错在那哦~!运死 --------------------编程问答-------------------- Server.MapPath("../newproduct");
这个有值吗?
估计是这里错啦 --------------------编程问答-------------------- 路径错误 --------------------编程问答-------------------- 路径错误
补充:.NET技术 , ASP.NET