我在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
。
为什么?
答案 0 :(得分:1)
ImageEdit.ImageUrl = Server.MapPath(filepath);
试试这个
ImageEdit.ImageUrl = filepath;
其中filepath =“/ _layouts / IMAGES / imagewebpart /”+ filename