5,665,355 members and growing! (16,006 online)
Email Password   helpLost your password?
Web Development » Custom Controls » General     Intermediate

ClickOnce Button Server Control

By Eric Plowe

An article that shows how to do what everyone said you shouldn't or couldn't do with the ASP.NET button control.
VB, Windows, .NET 1.1, .NET, Visual Studio, ASP.NET, Dev

Posted: 13 Apr 2004
Updated: 13 Apr 2004
Views: 158,692
Bookmarked: 81 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
49 votes for this Article.
Popularity: 7.61 Rating: 4.50 out of 5
3 votes, 6.1%
1
0 votes, 0.0%
2
3 votes, 6.1%
3
5 votes, 10.2%
4
38 votes, 77.6%
5

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:

    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:

    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.

    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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Eric Plowe


24 year old web developer currently working for a 17 year old software company in sunny Florida.

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

In my spare time I try to continue my pursuit of music (when i have time!).
Occupation: Web Developer
Location: United States United States

Other popular Custom Controls articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 85 (Total in Forum: 85) (Refresh)FirstPrevNext
Questionenabling/ disabiling buttonmemberMember 28350560:18 5 Nov '08  
GeneralThanksmemberhido26280:22 27 Aug '08  
GeneralThanks a lot works for aspnet1.1memberyeya8a6:53 25 Jun '08  
GeneralCommandButton ClickOnceButton Server ControlmemberS.S.Sivaprasad21:47 16 Jan '08  
GeneralThis button saved my *SSmemberrobtathome@charter.net8:24 24 Apr '07  
GeneralRe: This button saved my *SSmemberEric Plowe6:03 3 Aug '07  
NewsA solution for asp.net 2.0membersimplicityc13:24 26 Jan '07  
Questiondoesnt seem to trigger the ajax UpdateProgress controlmemberpdenomme5:52 4 Jan '07  
Generalsupport ValidationGroup functionality?memberlimkek16:42 17 Dec '06  
GeneralToo much troublememberRobotovich13:16 25 Oct '06  
GeneralClient scripts on .NET 2.0memberjportelas6:48 3 Oct '06  
NewsOne more click once button articlememberTittle Joseph0:43 7 Aug '06  
GeneralJust what I neededmemberNathan Wheeler5:03 28 Mar '06  
GeneralRe: Just what I neededmemberEric Plowe6:09 28 Mar '06  
GeneralPrompt ClickOnce Button Server Controlmemberqherb9:52 13 Mar '06  
GeneralRe: Prompt ClickOnce Button Server ControlmemberAnjum Rizwi20:32 1 May '06  
GeneralRe: Prompt ClickOnce Button Server Controlmemberqherb5:39 2 May '06  
GeneralRe: Prompt ClickOnce Button Server ControlmemberAnjum Rizwi20:47 2 May '06  
Generalthank youmemberearthdance8:42 30 Nov '05  
GeneralClick and DisablememberYao Xi23:39 25 Oct '05  
Generalsubmit and onsubmitmemberKirk Quinbar7:18 19 Sep '05  
GeneralMy C# version - with some limitationssusstrondborg14:59 18 Aug '05  
GeneralRe: My C# version - with some limitationssuss