I have the following LinkButton
in my ASP.NET website:
<asp:LinkButton ID="btnUpload" runat="server" CssClass="btn btn-primary" OnClick="btnUpload_Click">
<span aria-hidden="true" class="glyphicon glyphicon-upload"></span> Upload File
</asp:LinkButton>
When the user clicks it, it should get fired once only, but it's getting fired twice.
What could be the reason?