ポストバックしたくないことを除いて、通常のように機能させたいボタンがあります。
ユーザーがそれをクリックした場合、次のポストバックでButton Clickイベントを実行したいのですが、その特定のボタンがポストバックできないようにしたいだけです。
私はこれを試しました:
<asp:Button ID="ChangeAllBtn" runat="server" Text="Change All" OnClientClick="return false;" OnClick="ChangeAllBtnClick" />
But it doesn't call the ChangeAllBtnClick after I postback. If I remove the "return false;", then there is postback before I want it.
What do?