asp.net Button OnClick event not firing

asp.net, c#

Solution

Have you copied this method from other page/application ? if yes then it will not work, So you need to delete the event and event name assigned to the button then go to design and go to button even properties go to onClick event double click next to it, it will generate event and it automatically assigns event name to the button. this should work

Problem

I have problem in asp.net button control. I define a button in form, `onclick` event of button is not firing when I click on the button. ``` <asp:Button ID="btn_QuaSave" runat="server" Text="SAVE" OnClick="btn_QuaSave_Click" /> protected void btn_QuaSave_Click(object sender, EventArgs e) { } ```

Original source