I have a LinkButton server control which have some attached method in OnClick Event in somepage.aspx.cs file throw it's Id (control), I want to add another Server side Event also to that LinkButton.
How to achieve that?
Edit:
on default.aspx.cs this is a line of code which open a new window
lnlBtnProfile.Attributes.Add("onClick", "newwindow('" + acc.ProfileUrl + "','MyProfile');return false");
but I want another function to execute at same time.