我意识到这个问题已被提出,但没有一个答案适用于我的项目。
我有一个按钮,当点击时调用API,因此有1秒的延迟。
我尝试过几件事情都没有用。
btnSave.Attributes.Add("onclick", " this.disabled = true; " + ClientScript.GetPostBackEventReference(btnSave, null) + ";");
即使这样做也没有。
答案 0 :(得分:25)
防止双击。请在您的aspx页面中添加以下代码。
<script type="text/javascript" language="javascript">
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
function BeginRequestHandler(sender, args) { var oControl = args.get_postBackElement(); oControl.disabled = true; }
</script>
答案 1 :(得分:18)
此解决方案简单有效。在您的按钮上包含以下代码:
OnClientClick="return CheckDouble();"
无论您想要哪种JavaScript,例如:在页面底部:
<script type="text/javascript">
var submit = 0;
function CheckDouble() {
if (++submit > 1) {
alert('This sometimes takes a few seconds - please be patient.');
return false;
}
}
</script>
答案 2 :(得分:2)
您可以使用此代码阻止双击:
Me.btnSave.Attributes.Add("onclick", "this.disabled=true;")
Me.btnSave.UseSubmitBehavior = False
因此,您可以使用btnSave_Click
来调用您的API。
通常我的Validators
中有很多Page
:设置Validator.SetFocusOnError = True
如果验证失败,我可以运行此代码重新启用保存按钮。
Me.YourControl.Attributes.Add("onfocus", Me.btnSave.ClientID & ".removeAttribute('disabled');")
答案 3 :(得分:1)
以上大部分建议都不适合我。 tezzo做了以下工作:
Me.btnSave.Attributes.Add("onclick", "this.disabled=true;")
Me.btnSave.UseSubmitBehavior = False
更简单,而不是在代码隐藏中使用上述内容,只需使用以下内容:
<asp:Button ID="btnSave" runat="server" Text="Save"
UseSubmitBehavior="false"
OnClientClick="this.disabled='true';"
</asp:button>
UseSubmitBehavior =“false”是关键。
答案 4 :(得分:1)
这是我发现在所有情况下都有效的方法。
<form id="form1" runat="server">
<asp:Button ID="Button1" runat="server" Text="Button1" OnClick="Button1_Clicked" />
<asp:Button ID="Button2" runat="server" Text="Button2" />
</form>
Now here’s the short JavaScript snippet that will disable the button as soon as it is clicked so that when PostBack occurs the button cannot be clicked again.
<script type = "text/javascript">
function DisableButton() {
document.getElementById("<%=Button1.ClientID %>").disabled = true;
}
window.onbeforeunload = DisableButton;
</script>
The above script disables the ASP.Net Button as soon as the page is ready to do a PostBack or the ASP.Net form is submitted.
But in cases you might want to disable all Buttons and Submit Buttons on the page hence for such cases I have created another function which disables all Buttons and Submit buttons whenever there’s a PostBack or form submission
<script type = "text/javascript">
function DisableButtons() {
var inputs = document.getElementsByTagName("INPUT");
for (var i in inputs) {
if (inputs[i].type == "button" || inputs[i].type == "submit") {
inputs[i].disabled = true;
}
}
}
window.onbeforeunload = DisableButtons;
</script>
答案 5 :(得分:0)
防止双击。请在您的aspx页面中添加以下代码
<script type = "text/javascript">
function DisableButton() {
document.getElementById("<%=Button1.ClientID %>").disabled = true;
}
window.onbeforeunload = DisableButton;
</script>
答案 6 :(得分:0)
起初,我的解决方案是这样的:
<script>
function disableButton(btn) {
setTimeout(function () { btn.disabled = true; }, 20);
return true;
}
</script>
<asp:Button runat="server" ID="btnSave" Text="Save" OnClick="btnSave_Click" OnClientClick="return disableButton(this);" />
没有setTimeout的按钮将立即被禁用,然后将不会触发OnClick事件。这种方法的缺点是,如果某些验证失败或发生某些错误,将无法再访问“保存”按钮。
所以我认为禁用按钮不是一个好的解决方案,而是想出另一种解决方案:
function disableButton(btn) {
if (btn.hasclicked) return false;
btn.hasclicked = 1;
btn.onmouseenter = function () { this.hasclicked = 0; };
return true;
}
但是我的同事指出,如果后期处理非常缓慢,则在完成之前,用户仍然可以通过左键单击按钮来执行两次回发。所以我想出了另外两种解决方案:
function disableButton(btn) {
if (Page_ClientValidate) {
Page_ClientValidate();
if (!Page_IsValid) {
btn.setAttribute("btnClicked", "n");
return true;
}
}
if (btn.getAttribute("btnClicked") == "y") {
return false;
} else {
btn.setAttribute("btnClicked", "y");
return true;
}
}
由于ASP.NET在页面中只有一个表单(而不是ASP.NET MVC),所以我们还可以让表单的onsubmit客户端事件拦截双击:
function disableButton(btn) {
$("form").submit(function () {
if (btn.getAttribute("btnClicked") == "y")
return false;
else
btn.setAttribute("btnClicked", "y");
return true;
});}
我将请质量检查人员测试这两种方法(修改后:质量检查已证明使用这种方法非常危险。有关详细信息,请参阅我的以下评论。)
答案 7 :(得分:0)
尝试这种方法,这是一个可行的解决方案:
对于所有不支持js的浏览器,包括Opera Mobile浏览器,意味着您的表单都不会在这种浏览器中被阻止。
在Page_load()方法中添加它:
BtnID.Attributes.Add("onclick", "if(typeof (Page_ClientValidate) === 'function' && !Page_ClientValidate()){return false;} this.disabled = true;this.value = 'Working...';" + ClientScript.GetPostBackEventReference(BtnID, null) + ";");