当我在后面的代码中设置带有 url 的图像时不起作用,我不知道为什么?
if (File.Exists(Server.MapPath("~/Images/EmpQr/") + int.Parse(Session["userID"].ToString()) + ".PNG")) //It passes this condition
{
tr_res.Visible = true;
img_res.ImageUrl = Server.MapPath("~/Images/EmpQr/" + int.Parse(Session["userID"].ToString()) + ".PNG"); //Here 's the problem ,no image
}
else
{
tr_res.Visible = false;
}
<asp:Image ID="img_res" runat="server" AlternateText="result" />
当我像这样设置图片网址时
ImageUrl ="~/Images/EmpQr/1345.PNG"
在设计视图中它有效。
如何解决这个问题?