在按鈕中加入:1.送出前先確認 2.防止按鈕重按 重新送出 ASP.Net C# VB 通用
重點在這一段:
UseSubmitBehavior="false" OnClientClick="if (confirm('確定執行嗎?')==false) {return false;} else {this.disabled = true; this.value = '資料處理中...請稍候';}"
<asp:Button ID="run" runat="server" Text="執行" OnClick="to_run_Click" UseSubmitBehavior="false" OnClientClick="if (confirm('確定執行嗎?')==false) {return false;} else {this.disabled = true; this.value = '資料處理中...請稍候';}" />