我将图像上传路径存储到db中的文件夹
FileUpload1.PostedFile.SaveAs(Server.MapPath("~/Audio/" + FileUpload1.PostedFile.FileName));
string anspath1 = System.IO.Path.Combine(Server.MapPath("~/Audio/"),FileUpload1.PostedFile.FileNam);
if(FileUpload1.HasFile)
{
an.Ans_Image = anspath1;
an.Question_Table_Id = Q_last.Id;
an.Value = true;
ef.AnswerTables.Add(an);
ef.SaveChanges();
}
我想使用Image1.Url方法在aspx页面上获取此图像我该如何获取
答案 0 :(得分:1)
试试这个
string filepath= "~/" +filepath.Substring(HttpContext.Current.Request.PhysicalApplicationPath.Length).Replace("\\", "/");
Image1.ImageUrl = filepath;