自訂asp.net控制項分析(二)

來源:互聯網
上載者:User

上一篇分析了自訂控制項的基本文法。這次編寫一控制項來作為執行個體。

在asp.net中當你想對button的click事件做確認操作,但Button按鈕不能滿足此要求。就針對此要求來編寫自己的控制項。

======================================================================

繼承:System.Web.UI.WebControls.Button

控制項功能:彈出確認訊息框

控制項屬性:message(訊息框中顯示的資訊)

控制項方法:不需要

控制項事件:不需要

使用方法:“確定”執行按鈕的button_click事件,“取消”不執行任何事件。


======================================================================

Imports System.ComponentModel

Imports System.Web.UI

Namespace WebControls

    <DefaultProperty("Text"), ToolboxData("<{0}:ConfirmButton runat=server></{0}:ConfirmButton>")> Public Class ConfirmButton

         '繼承button

        Inherits System.Web.UI.WebControls.Button

        '為其所包含的任何伺服器控制項提供唯一的命名空間

        Implements INamingContainer

        Dim _Message As String

        '定義message屬性。

        <Bindable(True), Category("Appearance"), DefaultValue("")> Property [Message]() As String

            Get

                Return _Message

            End Get

            Set(ByVal Value As String)

                _Message = Value

            End Set

        End Property

        Public Sub New()

            _Message = ""

        End Sub

'重寫控制項的輸出

        Protected Overrides Sub Render(ByVal output As System.Web.UI.HtmlTextWriter)

           '為控制項增加用戶端onclick事件。

            If Me.Message.Trim <> "" Then Me.Attributes.Add("onClick", "jscript:if(!confirm('" & Me.Message & "')) return false;")

            Me.Attributes.Add("onFocus", "jscript:this.blur();")

            MyBase.Render(output)

        End Sub

    End Class

End Namespace

到此,控制項就編寫完了,你看是不是很簡單。


http://vip.6to23.com/moon15/controls/confirmbuttons.rar下載地址。




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.