I have a asp.net button like this
<asp:Button ID="btn" runat="server" Text="txt" OnClientClick="return abc()" />
and javascript function like this
function abc() {
return false;
}
the problem is on client click the page is posting to the server even when I am returning false in my javascript function.
Any help will be appreciated, thanks