100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 防止前端重复提交表单

防止前端重复提交表单

时间:2023-02-08 09:51:32

相关推荐

防止前端重复提交表单

在加载时添加下面两条语句

protected void Page_Load(object sender, EventArgs e)

{

if (!Page.IsPostBack)

{

#region 遮罩按钮

this.Download.Attributes.Add(" onclick ", ClientScript.GetPostBackEventReference

(Download, " Click ") + " ;this.disabled=true; this.value=‘同步中…’; “);

this.btnImport.Attributes.Add(” onclick ", ClientScript.GetPostBackEventReference

(btnImport, " Click ") + " ;this.disabled=true; this.value=‘上传中…’;");

#endregion

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。