我試圖從名稱圖像在項目目錄下創建的文件夾中顯示圖像。圖像沒有在運行時顯示
我正試圖訪問star.gif
,它位於Images文件夾中。
這裏是我的一小段代碼,用於訪問圖像
TableCell tc=new TableCell();
for (int j = 0; j < i; j++)
{
System.Web.UI.WebControls.Image rating = new System.Web.UI.WebControls.Image();
rating.ImageUrl = Server.MapPath("~/Images/star.gif");
rating.ID = j.ToString();
rating.AlternateText = "No image";
tc.Controls.Add(rating);
}
我甚至設置的授權在web.config
,但沒有用它。
請在代碼中告訴我的錯誤。
除非有特殊原因,否則,你不應該使用'使用Server.Mappath()'。嘗試檢查路徑以確保它指向正確的位置。 – Jeremy