Click here to Skip to main content
15,880,972 members
Articles / Web Development / ASP.NET
Article

ClickOnce Button Server Control

Rate me:
Please Sign up or sign in to vote.
4.75/5 (54 votes)
13 Apr 2004CPOL3 min read 302.6K   2.9K   100   86
An article that shows how to do what everyone said you shouldn't or couldn't do with the ASP.NET button control.

Introduction

Back in the days of classic ASP, when we wanted to prevent the end user from repeatedly mashing the submit button, we would disable the button with JavaScript. But with ASP.NET, it's not as simple as that anymore. When you disable any form element client side, you essentially disable it server side as well since its name value pair will not be sent with the form post. The drawback from this is that the button_click event is now rendered useless. It will never be raised!

I have searched the ASP.NET forums over for an elegant solution for this problem and I have seen a couple of nice work arounds but nothing that gives the true effect of rendering the button disabled after being clicked. So I came up with my own. Enter the ClickOnceButton server control.

The server control behaves exactly like the intrinsic button control with the exception of two new properties: DisableAfterClick and DisabledText.

When DisableAfterClick is true, the button will be disabled client side after click. If DisabledText is set, the text of the button will be set to the DisabledText after the button is disabled. Useful if you want to get a li'l visual cue (such as changing the buttons text to 'Processing..').

The main work happens in the AddAttributesToRender event:

VB
Protected Overrides Sub AddAttributesToRender(ByVal writer As HtmlTextWriter)
    Dim strOnClick As String

    If IsNothing(MyBase.Page) Then
        MyBase.Page.VerifyRenderingInServerForm(Me)
    End If

    writer.AddAttribute(HtmlTextWriterAttribute.Type, "submit")
    writer.AddAttribute(HtmlTextWriterAttribute.Name, MyBase.UniqueID)
    writer.AddAttribute(HtmlTextWriterAttribute.Value, Me.Text)

    If Not IsNothing(MyBase.Page) And Me.CausesValidation_
                And MyBase.Page.Validators.Count > 0 Then
        If Me.DisableAfterClick Then
            strOnClick = Me.GetClickOnceClientValidateEvent()
        Else
            strOnClick = Me.GetClientValidateEvent()
        End If

        If MyBase.Attributes.Count > 0 And Not _
                IsNothing(MyBase.Attributes("onclick")) Then
          strOnClick = String.Concat(MyBase.Attributes("onclick"), strOnClick)
          MyBase.Attributes.Remove("onclick")
        End If

        writer.AddAttribute("language", "javascript")
        writer.AddAttribute(HtmlTextWriterAttribute.Onclick, strOnClick)
    ElseIf DisableAfterClick = True Then
        strOnClick = Me.GetOnceClickJavascript()

        If MyBase.Attributes.Count > 0 And Not _
               IsNothing(MyBase.Attributes("onclick")) Then
          strOnClick = String.Concat(MyBase.Attributes("onclick"), strOnClick)
          MyBase.Attributes.Remove("onclick")
        End If

        writer.AddAttribute("language", "javascript")
        writer.AddAttribute(HtmlTextWriterAttribute.Onclick, strOnClick)
    End If

    MyBase.AddAttributesToRender(writer)
End Sub

This creates the button programmatically as well as determines if the button causes validation and there are validators on the page or if the button just simply needs to be disabled. You'll notice it calls three distinct different properties. These are what makes the magic happen. They are as follows:

VB
Friend ReadOnly Property GetClientValidateEvent() As String
    Get
        Return "if (typeof(Page_ClientValidate) _
                  == 'function') Page_ClientValidate(); "
    End Get
End Property

Friend ReadOnly Property GetClickOnceClientValidateEvent() As String
    Get
        Return "if (typeof(Page_ClientValidate) == 'function') _
                { if(Page_ClientValidate()) { " + _
                GetOnceClickJavascript + " }} else { " + _
                GetOnceClickJavascript + " }"
    End Get
End Property

Friend ReadOnly Property GetOnceClickJavascript() As String
    Get
        Return "document.getElementsByName('" + _
          Me.OnceClickBtnName + "').item(0).setAttribute('name'," + _
          "this.getAttribute('name')); this.disabled = true; " + _
          IIf(DisabledText = String.Empty, String.Empty, _
          "this.value = '" + DisabledText + "';") + _
          "this.form.submit();"
    End Get
End Property

The property, GetClientValidateEvent(), returns the same JavaScript that the framework normally appends if your button control causes validation and there are validators on the page. This is to handle the scenario where you have the button on a page, set to not be disabled after click, and you have validators.

The property, GetClickOnceClientValidateEvent(), returns a slightly modified version of the above script. This handles the scenario when there are validators on the page and you want the button to be disabled after click. But you want to make sure it only gets disabled if the Page_ClientValidate() returns true or in the case of non IE browsers it'll just disable the button and submit.

The property, GetOnceClickJavascript(), returns the base set of JavaScript that disables handles disabling the button. It also makes sure the button gets sent over in the post so that the button click will be raised. It does this by exchanging the name attribute of a hidden field with the name of the button. The framework just needs to see the name/ID of the control sent over to raise its click event. The hidden field gets registered in the control's OnInit(EventArgs) event.

VB
Protected Overrides Sub OnInit(ByVal e As EventArgs)
    If Me.DisableAfterClick And Not Me.IsHiddenFieldRegistered Then
        MyBase.Page.RegisterHiddenField(Me.OnceClickBtnName, "")
    End If

    MyBase.OnInit(e)
End Sub

Private Function IsHiddenFieldRegistered() As Boolean
    For Each ctl As Control In MyBase.Page.Controls
        If TypeOf ctl Is HtmlControls.HtmlInputHidden Then
            If ctl.ID = Me.OnceClickBtnName Then
                Return True
            End If
        End If
    Next

    Return False
End Function

The default constant value of OnceClickBtnValue is __onceClickBtn. The IsHiddenFieldRegistered function just makes sure that the field is registered only once. This allows us to possibly have more than one button on the form that disables after click.

You may be wondering why I didn't just inherit from the System.Web.UI.WebControls.Button class. Well, the reason was the AddAttributesToRender event. I could have just hijacked that event and added the same code I have here and not have had to go through the entire process of creating the properties, functions, etc. The problem was I still needed to call MyBase.AddAttributesToRender which would then finally call the AddAttributesToRender in the System.Web.UI.WebControls.WebControl class. If I inherited from the Button class, I would end up with two onclicks and no control over the JavaScript outputted in the event of validation. This gives me complete control.

To use this in your own projects, simply add the clickoncebutton assembly to your toolbox and drag and drop it onto your webform and you're set! Enjoy!

Note: Tested on IE 6.0 and NS 7.0 with version 1.1 of the .NET framework.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
28 year old developer currently working for Sapient, Inc.

Specialities include (but not limited to): C# And VB.Net, VB6 & 5, VBScript(Classic asp), JavaScript guru, web services, xml/xsl, C++ (Win32/COM/DCOM)

In my spare time I try to continue my pursuit of music (when i have time!).

Comments and Discussions

 
GeneralCoverted To Image Button Pin
Martin McNally21-Mar-05 5:00
Martin McNally21-Mar-05 5:00 
GeneralRe: Coverted To Image Button Pin
Ashaman31-May-05 1:50
Ashaman31-May-05 1:50 
GeneralRe: Coverted To Image Button Pin
Tittle Joseph6-Aug-06 23:56
Tittle Joseph6-Aug-06 23:56 
GeneralImageButton Pin
bcbond13-Jan-05 4:33
bcbond13-Jan-05 4:33 
GeneralBrilliant Pin
philasmith12-Jan-05 13:44
philasmith12-Jan-05 13:44 
General__doPostBack Pin
angel.carrillo11-Jan-05 11:49
angel.carrillo11-Jan-05 11:49 
QuestionLinkButton? Pin
peter the cat6-Jan-05 3:48
peter the cat6-Jan-05 3:48 
GeneralThank You * 1000 Pin
sbguy29-Oct-04 12:00
sbguy29-Oct-04 12:00 
One Thousand Thank You's for this excelent insight & control!
Generalcan't find assembly Pin
Travis D Falls3-Oct-04 13:23
Travis D Falls3-Oct-04 13:23 
GeneralRe: can't find assembly Pin
peter the cat6-Jan-05 1:11
peter the cat6-Jan-05 1:11 
GeneralRe: can't find assembly Pin
Anjum Rizwi1-May-06 21:03
Anjum Rizwi1-May-06 21:03 
GeneralMultiple buttons Pin
Mika21-Sep-04 21:28
Mika21-Sep-04 21:28 
GeneralRe: Multiple buttons Pin
Mika28-Oct-04 22:04
Mika28-Oct-04 22:04 
GeneralRe: Multiple buttons Pin
Uwe Keim7-Feb-05 8:52
sitebuilderUwe Keim7-Feb-05 8:52 
General.NET Framework versions Pin
MarceloBarros9-Sep-04 12:46
MarceloBarros9-Sep-04 12:46 
GeneralRe: .NET Framework versions Pin
YosefDov21-Feb-05 11:34
YosefDov21-Feb-05 11:34 
GeneralRe: .NET Framework versions Pin
YosefDov21-Feb-05 11:44
YosefDov21-Feb-05 11:44 
GeneralHelp Needed using multiple javascript Pin
dwhelp1-Sep-04 22:38
dwhelp1-Sep-04 22:38 
GeneralRe: Help Needed using multiple javascript Pin
Anonymous10-Sep-04 2:30
Anonymous10-Sep-04 2:30 
GeneralRe: Help Needed using multiple javascript Pin
Eric Plowe10-Sep-04 2:31
Eric Plowe10-Sep-04 2:31 
GeneralExtending ClickOnce Button to do LinkButton Pin
JamesDou18-Aug-04 4:08
JamesDou18-Aug-04 4:08 
GeneralRe: Extending ClickOnce Button to do LinkButton Pin
Eric Plowe30-Aug-04 7:34
Eric Plowe30-Aug-04 7:34 
GeneralRe: Extending ClickOnce Button to do LinkButton Pin
tarungogia21-Nov-05 9:39
tarungogia21-Nov-05 9:39 
GeneralJust what I need....but can't get it to work! Pin
Member 124831420-Jul-04 11:17
Member 124831420-Jul-04 11:17 
GeneralRe: Just what I need....but can't get it to work! Pin
Eric Plowe30-Aug-04 7:35
Eric Plowe30-Aug-04 7:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.