I have the following in my master page:
<div class="navigation">
<ul class="main-menu">
<li class="about"><asp:LinkButton ID="lbtnSubmitLeaveRequest" runat="server" OnClick="lbtnSubmitLeaveRequest_Click" CausesValidation="false">Submit Leave Request</asp:LinkButton></li>
</ul>
</div>
And in the code-behind:
protected void lbtnSubmitLeaveRequest_Click(object sender, EventArgs e)
{
lbtnLeaveHidden_ModalPopupExtender.Show();
}
But the click event is not firing.
EDIT: If I use a normal Button it works, but the linkbutton is not working.