为什么我的图像不在SharePoint中显示?

时间:2012-12-13 19:16:52

标签: sharepoint sharepoint-2007

我在SharePoint中上传图片:

我将图片文件保存在文件夹中:IMAGES\\imagewebpart\\

    Random rd = new Random(); 
    int db = rd.Next(0, 100); 
    string filename =Path.GetFileNameWithoutExtension(imagefile) + 
      db.ToString() + 
      Path.GetExtension(imagefile); 
    string filepath ="\\_layouts\\IMAGES\\imagewebpart\\" + filename; 
FileUpload1.SaveAs(Server.MapPath(filepath)); 
    //ImageEdit.ImageUrl =filepath; 
    ImageEdit.ImageUrl = Server.MapPath(filepath);

我可以成功保存文件,但我无法将图片显示为ImageEdit

为什么?

1 个答案:

答案 0 :(得分:1)

  

ImageEdit.ImageUrl = Server.MapPath(filepath);

试试这个

ImageEdit.ImageUrl = filepath;

其中filepath =“/ _layouts / IMAGES / imagewebpart /”+ filename