zoukankan      html  css  js  c++  java
  • 如何防止用户双击按钮导致的重复提交

    没用Updatepanel的页面,这样使用:

    btnSave.OnClientClick = "if(!Page_ClientValidate()){Page_BlockSubmit = false;return false;}" + this.GetPostBackEventReference(this.btnSave) + ";this.disabled=true;";

    使用Updatepanel的页面:

    ScriptManager.RegisterStartupScript(this.Page,
                    this.Page.GetType(),
                    Guid.NewGuid().ToString(),
                    @"function BeginRequest(sender, args){var sLink = sender._postBackSettings.sourceElement;
    if(sLink !=null &&  sLink.tagName=='A')sLink.disabled = true;$get('" + progress.ClientID + @"').style.display = 'block';}
                      function EndRequest(sender, args){var sLink = sender._postBackSettings.sourceElement;
    if(sLink !=null &&  sLink.tagName=='A')sLink.disabled = false;$get('" + progress.ClientID + @"').style.display = 'none';}
                        Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequest);
                        Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequest);"
                    , true);

  • 相关阅读:
    红黑树
    二叉搜索树
    散列表
    快速排序
    堆排序
    归并排序
    插入排序
    Shell脚本之:函数
    Shell脚本之:退出循环
    ACM刷题之路(四)2018暑假实验室集训——深广搜专题题解
  • 原文地址:https://www.cnblogs.com/Don/p/1791242.html
Copyright © 2011-2022 走看看