asp.net avoid button Repeat click, make the button click and then dimmed

Source: Internet
Author: User

Button ID is: btnsubmit

In order to realize RT function, only need to add two lines of code.

1. Add in the first line of the. aspx page <%@ page%>:

Enableeventvalidation= "false"

2. Add the following code to the Page_Load method of the service-side code:

Make the button unavailable and callback service-side events

THIS.BTNSUBMIT.ATTRIBUTES.ADD ("onclick", Clientscript.getpostbackeventreference (Btnsubmit, "click") + "; This.disabled=true; This.value= ' Submit ... ';

Provide a simple example written by other people on the Web:

Make the button unavailable and callback service-side events
protected void Page_Load (object sender, EventArgs e)
{
THIS.BTNOK.ATTRIBUTES.ADD ("onclick", Clientscript.getpostbackeventreference (Btnok, "click") + "; this.disabled=true ; This.value= ' Submit ... ';

}

Button Handling method

protected void Btnok_click (object sender, EventArgs e)

{
System.Threading.Thread.Sleep (2000);
Clientscript.registerstartupscript (GetType (), "Btncommit", "alert (' Submit successfully!!! ');", true);

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.