Control.DataBinding Event
.NET Framework 4.5
Occurs when the server control binds to a data source.
Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
This event notifies the server control to perform any data-binding logic that has been written for it.
Topic | Location |
---|---|
How to: Create Event Handlers in ASP.NET Web Pages | Building ASP .NET Web Applications |
How to: Create Event Handlers in ASP.NET Web Pages | Building ASP .NET Web Applications |
' Create a class that implements the ITemplate interface. ' This class overrides the InstantiateIn method to always ' place templates in a Literal object. It also creates a ' custom BindData method that is used as the event handler ' associated with the Literal object's DataBinding event. Imports System Imports System.Web Imports System.Data Imports System.Web.UI Imports System.Web.UI.WebControls Namespace UsingItemTemplatesVB Public Class GenericItem Implements ITemplate Private column As String Public Sub New(column As String) Me.column = column End Sub 'New ' Override the ITemplate.InstantiateIn method to ensure ' that the templates are created in a Literal control and ' that the Literal object's DataBinding event is associated ' with the BindData method. Public Sub InstantiateIn(container As Control) Implements ITemplate.InstantiateIn Dim l As New Literal() AddHandler l.DataBinding, AddressOf Me.BindData container.Controls.Add(l) End Sub 'InstantiateIn ' Create a public method that will handle the ' DataBinding event called in the InstantiateIn method. Public Sub BindData(sender As Object, e As EventArgs) Dim l As Literal = CType(sender, Literal) Dim container As DataGridItem = CType(l.NamingContainer, DataGridItem) l.Text = CType(container.DataItem, DataRowView)(column).ToString() End Sub 'BindData End Class 'GenericItem End Namespace 'UsingItemTemplatesVB
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.