One issue I'm facing involves an asp.net button set up like this:
<asp:Button ID="btn" runat="server" Text="txt" OnClientClick="return abc()" />
Accompanied by a javascript function like so:
function abc() {
return false;
}
Despite my best efforts, the page continues to post to the server upon client click, even though I am returning false in my javascript function.
Any assistance on resolving this matter would be greatly appreciated. Thank you!