我在后面的代码中创建了一个ImageButton。现在我需要当客户端按下ImageButton时,ImageButton将执行某个功能。问题是它没有做到这一点。
这是代码 -
var img = new ImageButton();
img.ID = "Del" + i.ToString();
img.ImageUrl = "images/1395958363_meanicons_57.png";
img.Width = 48;
img.Height = 38;
img.Click += new System.Web.UI.ImageClickEventHandler(this.btnForDelete_Click); //doesn't work!!
Lab.Controls.Add(img); //put the image in a label
答案 0 :(得分:2)
声明要在onClick事件中触发的回调:
public void DynamicClick(object sender, EventArgs e) {
// do something
}
将其添加到Click
EventHandler
列表中:
img.Click += new EventHandler(DynamicClick);
另请参阅:Setting LinkButton's OnClick event to method in codebehind。
答案 1 :(得分:2)
EventHandler不能与LinkButton一起使用。 试试以下内容:
img.Click += new ImageClickEventHandler(onImageClick);