Trying to add a click event to a hyperlink, but couldn't find any way except people using this code of line with some javascript,
HyperLink link = new HyperLink();
//link.Attributes.Add("onclick", "return handleHyperLinkClick(this)");
link.Click ??
AddControl(link);
AddControl(new LiteralControl(string.Format("</p>")));

