3

我已经使用下面的代码在我的源文件的文件夹中保存了我的图像。现在我必须在我的表单上检索相同的保存图像

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));
4

4 回答 4

3

像这样使用它:

Image2.ImageUrl = "~/Image/" + strtemp;

Server.MapPath用于获取服务器资源的物理路径。您需要它来进行保存文件等操作。但是,您的物理路径在网络上无效。您应该使用虚拟路径来指定 url。

于 2012-09-17T12:25:28.587 回答
2

您可以像这样获取图像。:-

Image2.ImageURL = "~/Image/"+strtemp;

希望这对您有所帮助。

于 2012-09-17T12:26:49.660 回答
0

Image2.ImageUrl = "~\\Image\\" + strtemp;

使用上面的代码。

于 2012-09-17T12:34:56.963 回答
0
if(!(DropDownList1.SelectedItem.Text==""))
{
    string a = DropDownList1.SelectedItem.Text;
    string [] q  = a.Split('/');

    string qq  =    q[1];
    Image1.Visible = true;
    Image1.ImageUrl = "~/Images1/" + qq;
}
于 2017-11-14T09:42:00.803 回答