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 ...