↧
Re: Duplicate Submit Button Clicks
Hi danieldunn10,From your description, I suggest you can add timer controller in asp.net. I have made a sample on my side (Disable button for 5 seconds). The following methods for your...
View ArticleRe: Duplicate Submit Button Clicks
You could consider simply disabling the button after the initial click :<asp:Button ID="Button1" runat="server" Text="Submit Request" OnClientClick='this.disabled = true;' />
View ArticleRe: Duplicate Submit Button Clicks
Show a progress indicator?Either on the button itself (bootstrap) or any of the other progress indicatorsI am using ladda button myself.http://msurguy.github.io/ladda-bootstrap/
View ArticleDuplicate Submit Button Clicks
Hi, I have created a web form for staff to enter information into which is stored in SQL. The page has a button:<asp:Button ID="Button1" runat="server" Text="Submit Request" />And in the code...
View Article