ASP中文件上传路径问题

代码如下:privatestringSaveUrl(){stringurl="";stringfilepath=Server.MapPath("Image/Singer/... 代码如下:
private string SaveUrl()
{
string url = "";
string filepath = Server.MapPath("Image/Singer/");
HttpFileCollection uploadedFiles = Request.Files;

//try
//{
for (int i = 0; i < uploadedFiles.Count; i++)
{
HttpPostedFile userPostedFile = uploadedFiles[i];

if (userPostedFile.ContentLength > 0)
{
userPostedFile.SaveAs(filepath + "\\" +
System.IO.Path.GetFileName(userPostedFile.FileName));
url = filepath + System.IO.Path.GetFileName(userPostedFile.FileName);

}

}
//}
//catch (Exception ex)
//{

// throw;
//}
return url;
}
它老是报错如下:
未能找到路径“E:\ASP.NET\新亮音乐网\Web\DoPage\Image\Singer\IMG0905A.jpg”的一部分。
我的页面路径在:
E:\ASP.NET\新亮音乐网\Web\DoPage\
想要把文件传入:
E:\ASP.NET\新亮音乐网\Web\Image\Singer\
这个路径怎么办?
展开
 我来答
星火飞蓝
2010-03-27 · TA获得超过304个赞
知道小有建树答主
回答量:384
采纳率:0%
帮助的人:0
展开全部
string filepath = Server.MapPath("../Image/Singer/");
这样对吗?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式