• ASP.NET防止重复提交


    同事写的,收录一下,方法如下:

        /// <summary>
        /// 防止重复提交
        /// </summary>
        /// <param name="imaButtons">按键集合</param>
        /// <param name="clientID">页面有JS验证的组件</param>
        public void RepeatSubmitCheckForRC( List<ImageButton> imaButtons)
        {
            foreach (ImageButton button in imaButtons)
            {
                StringBuilder sb = new StringBuilder();
                sb.Append("if (typeof(Page_ClientValidate) == 'function') { if (Page_ClientValidate() == false) { return false; }};");
                if (button.ID != "saveButton")
                {
                    sb.Append("if(!contentRequiredValidator()){return false};");//富文本编辑为空验证
                }
                sb.Append("this.disabled  = true;");
                sb.Append(this.Page.ClientScript.GetPostBackEventReference(button, ""));
                sb.Append(";");
                button.Attributes.Add("onclick", sb.ToString());
            }
        }

    调用方法的时候

            List<ImageButton> imaButtons = new List<ImageButton>();
            imaButtons.Add(sumbitButton);
            imaButtons.Add(saveButton);
            RepeatSubmitCheckForRC(imaButtons);

  • 相关阅读:
    银行卡和手机号占位符
    防京东进度尺的金额
    圆的进度条
    HMTL5滑动块研究
    自动生成验证码
    HTML5语义化
    (转)C++中使用C代码
    (转)四旋翼飞行器基本知识
    如何将.jpg图片 转换成.eps 格式图片
    HDOJ 1196 Lowest Bit
  • 原文地址:https://www.cnblogs.com/Hary/p/1387495.html
Copyright © 2020-2023  润新知