为什么我的fileupload上传图片时修改不了他成为网站中的相对路径;(即数据库打开时是图片的绝对路径)
stringsavePath=Server.MapPath("~/image_small/");if(FileUpload1.HasFile){stringtype=Dr...
string savePath = Server.MapPath("~/image_small/");
if (FileUpload1.HasFile)
{
string type = DropDownList1.SelectedItem.Text.ToString();
string fileName = FileUpload1.FileName;
savePath += type + "/" + fileName;
FileUpload1.SaveAs(savePath);
}
我想要的效果是:~/image_samall/type/fileName;
但是总是获取图片的绝对路径 求解 展开
if (FileUpload1.HasFile)
{
string type = DropDownList1.SelectedItem.Text.ToString();
string fileName = FileUpload1.FileName;
savePath += type + "/" + fileName;
FileUpload1.SaveAs(savePath);
}
我想要的效果是:~/image_samall/type/fileName;
但是总是获取图片的绝对路径 求解 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询