如果网页速度过慢或者其他原因,用户多次提交能导致数据的修改,怎么解决这个问题呢? 这段是放在 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
1