Disable Button OnClick Event
Question. User double-click on the button then data double rows.
Solution. On Event Page_Load
Solution. On Event Page_Load
Button1.Attributes.Add("onclick", " this.disabled = true; " + ClientScript.GetPostBackEventReference(Button1, Nothing) + ";")
Comments
Post a Comment