Posted on: 3/9/2015 10:49:18 AM | Views : 566

Hi,
i have a table with a link button on it (both are created on server side). when the panel is not clickable the link button event works, but when i add a click event to the table (see 
the link button:
replyLinkButton.Click += new ImageClickEventHandler(onReplyImageClick);
The combination:
mainTable.Controls.Add(mainRow);
mainRow.Controls.Add(mainCell);
mainCell.Controls.Add(replyLinkButton);
this.pnlMsgs.Controls.Add(mainTable);
How can i make the link button event work even though the table has the onClick event?
Any help will be appreciated.
Thanks.

Go to the complete details ...