解决方法一:

               .Framework2.0中才有的button属性:<asp:button />

             解决重复提交:OnClientClick="this.disabled=true;this.form.submit();" UseSubmitBehavior="False"

解决方法二:

              this.btnSubmit.Attributes["onclick"] = this.GetPostBackEventReference(this.btnSubmit) + ";this.disabled=true;";      //防止重复提交

相关文章:

  • 2021-08-17
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-13
猜你喜欢
  • 2021-08-08
  • 2021-09-17
  • 2021-08-22
  • 2021-09-20
相关资源
相似解决方案