0
我正在c#website.in這個頁面之一,我需要動態添加代碼方圖像按鈕,但它顯示提交查詢。所以,現在我的問題是我怎麼可以刪除此從動態添加圖像按鈕刪除提交查詢從動態添加圖像按鈕
我正在c#website.in這個頁面之一,我需要動態添加代碼方圖像按鈕,但它顯示提交查詢。所以,現在我的問題是我怎麼可以刪除此從動態添加圖像按鈕刪除提交查詢從動態添加圖像按鈕
我假設你正在做這樣的事情增加的ImageButton提交查詢:
ImageButton imageButton = new ImageButton();
FileInfo fileInfo = new FileInfo(strFileName);
imageButton.ImageUrl = "~/img/abc.png";
imageButton.Width = Unit.Pixel(100);
imageButton.Height = Unit.Pixel(100);
我建議您設置的value
屬性爲空字符串""
這樣的:
imageButton.Attributes["value"]="";
OR
imageButton.Attributes.Add("value", "");
也請參閱本stackoverflow post
希望這有助於!
謝謝!這是我的工作.. –