我已经使用下面的代码在我的源文件的文件夹中保存了我的图像。现在我必须在我的表单上检索相同的保存图像
string filename = Path.GetFileName(fileupload1.PostedFile.FileName);
string strtemp = System.DateTime.Now.ToString("ddMMyyhhmmss_") + filename;
fileupload1.SaveAs(Server.MapPath("Image/" + strtemp));
那么我应该如何为我的图像控件提供路径我已经尝试过这样的方法来获取文件和文件夹的路径,但我无法将图像从中获取到我的图像文件夹中
Image2.ImageUrl = (Server.MapPath("Image/" + strtemp));