一旦我點擊按鈕,我的image1將顯示圖像;Imagebutton不顯示圖像
當我我的ImagePath設置爲
Server.MapPath("~/SME IMAGE/anonymous_avatar.gif");
我的網址無法正常工作
但是當我把我的路徑
"~/SME IMAGE/anonymous_avatar.gif"
我的網址工作
所以基本上什麼發生到我的Server.MapPath?
try
{
string imagePath = Server.MapPath("~/SME IMAGE/anonymous_avatar.gif");
Image1.ImageUrl = imagePath;
Response.Write("success");
}
catch (Exception ex)
{
Response.Write(ex.Message.ToString());
}
呈現頁面(在瀏覽器中)的兩個URL之間有什麼區別? – Niklas 2012-02-03 07:57:41
@尼克拉斯,我認爲他們沒有什麼不同,是否有任何方法來檢查差異? – 2012-02-03 08:04:28