I have a .net application with aspx coded like:
...
<form id="Fac_Status" action="TEST.aspx?Section=rel" method="post" runat="server">
<asp:Button id="BTN_ActSTADD" runat="server" Text="Submit" CausesValidation="True" OnClick="BTN_ActSTADD_Click"></asp:Button>
</form>
...
Is there any possibility (environmental, settings, framework changes) that could exist where upon clicking Submit button, the button event handler is activated? In above example, currently the page posts to the Test.aspx set in the form tag.
But some time back - according to my predecessor, this page used to trigger the button event handler. There was no code change.