当我在visual studio中运行我的网站时,会显示图像,但在IIS中则不显示。
我加载图片的代码是:
string strRootRelativePath = "~/Images/" + oTable[0].myImage;
string strPath = Server.MapPath(strRootRelativePath);
if (System.IO.File.Exists(strPath))
{
img.ImageUrl = strPath;
}
感谢。