上传者: 38716590
|
上传时间: 2022-01-17 00:09:06
|
文件大小: 38KB
|
文件类型: -
如果网页速度过慢或者其他原因,用户多次提交能导致数据的修改,怎么解决这个问题呢? 这段是放在 Page_Load 中 代码如下: if(!Page.IsPostBack) { System.Text.StringBuilder s = new System.Text.StringBuilder(); s.Append(“a();”); s.Append(this.GetPostBackEventReference(this.Button1)); this.Button1.Attributes.Add(“onclick”,s.ToString()); } a() 是 JS function a