Archive for Novembre 7th, 2007

Disable Submit button after it was clicked

Novembre 7th, 2007

Description: Disable Submit button after it was clicked

Link: http://www.codekeep.net/snippets/bdf23cae-0a10-4ae7-8a75-128cd204004a.aspx

btnSubmit.Attributes.Add("onclick",
        ClientScript.GetPostBackEventReference(btnSubmit, "")
        + ";this.value='Submitting...';this.disabled = true;");