Tuesday, June 3, 2008

ASP.NET - Disable the Submit Button on Form Submit Event

URL: http://www.codeproject.com/KB/aspnet/DisableSubmitButton.aspx

Button1.Attributes.Add("onclick","javascript:" +
Button1.ClientID + ".disabled=true;" +
this.GetPostBackEventReference(Button1));

No comments: