How to disable postback on an asp Button (System.Web.UI.WebControls.Button)
Welcome to Programming Tutorial official website. Today - we are going to cover how to solve / find the solution of this error How to disable postback on an asp Button (System.Web.UI.WebControls.Button) on this date .
I have an asp button. It’s server-side so I can only show it for logged in users, but i want it to run a javascript function and it seems when it’s runat=”server” it always calls the postback event.
I also have a regular button (<input...
>) not running at server and it works fine…
How can I make this button only run the javascript and not postback?
Answer
Have your javascript return false when it’s done.
<asp:button runat="server".... OnClientClick="myfunction(); return false;" />