只能點擊一次的按鈕

來源:互聯網
上載者:User

今天在一個ASP.NET項目中,有個頁面提交時,因為資料量比較大,頁面重新整理比較慢,有的使用者多次點擊提交按鈕。導致有多條記錄插入到資料。

就想把按鈕做成只能點擊一次,不能再次點擊的效果。在網上尋找按鈕的onclientclick 和驗證控制項的衝突的問題(唉~~,以前看過沒有記住o(╯□╰)o)時,無意看到有人寫過這樣的只能點擊一次的按鈕。

有兩個假設前提:

  • Button必須是button類型,不能使submit類型
  • 如果我們使用驗證,javascript可以使用。

 

.aspx 頁面:

         <asp:TextBox ID="TextBox1" runat="server" ValidationGroup="SubgurimTest"></asp:TextBox>
        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
            ErrorMessage="*" ControlToValidate="TextBox1" ValidationGroup="SubgurimTest">
        </asp:RequiredFieldValidator>
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="OnceClickMe" ValidationGroup="SubgurimTest"
            UseSubmitBehavior="false" OnClientClick="clickOnce(this, 'Cargando...')" />
        <br />
        <asp:Label ID="Label1" runat="server" Text=""></asp:Label>

 

注意黑體字噢

.aspx.cs

     protected void Button1_Click(object sender, EventArgs e)
    {
        System.Threading.Thread.Sleep(1000);
        Label1.Text = DateTime.Now.ToString();
    }

 

.js
         function clickOnce(btn, msg)
        {
            // Test if we are doing a validation
            if (typeof(Page_ClientValidate) == 'function')
            {
                // if we are doing a validation, return if it's false
                if (Page_ClientValidate() == false) { return false; }
            }  
            // Ensure that the button is not of type "submit"
            if (btn.getAttribute('type') == 'button')
            {
                // The msg attibute is absolutely optional
                // msg will be the text of the button while it's disabled
                if (!msg || (msg='undefined')) { msg = 'Loading...'; }   
                btn.value = msg;
                // The magic
                btn.disabled = true;
            }
            return true;
        }

代碼中的注釋都是比較簡單的英文,就沒有翻譯(*^__^*) ……

代碼引用自:http://weblogs.asp.net/javinavarro/archive/2007/11/15/clickonce-button.aspx

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.