Feeds:
Posts
Comments

Archive for February, 2011

Preventing people from submitting a form multiple times by repeatedly clicking the submit button can be done with a few settings. First you need to set the attribute “UseSubmitBehavior” to “false” and then add the following to the “OnClientClick” attribute: “this.disabled=true;”. Example: <asp:Button runat=”server” ID=”ButtonSave” Text=”Save” CausesValidation=”true” Enabled=”true”  OnClick=”ButtonSave_Click” OnClientClick=”this.disabled=true;” UseSubmitBehavior=”false” /> I was experiencing [...]

Read Full Post »

Follow

Get every new post delivered to your Inbox.