GridView.IDataBoundControl.DataMember Property

Definition

Gets or sets the table that is exposed by the data source control to bind to the data-bound control.

property System::String ^ System::Web::UI::WebControls::IDataBoundControl::DataMember { System::String ^ get(); void set(System::String ^ value); };
string System.Web.UI.WebControls.IDataBoundControl.DataMember { get; set; }
member this.System.Web.UI.WebControls.IDataBoundControl.DataMember : string with get, set
 Property DataMember As String Implements IDataBoundControl.DataMember

Property Value

The table that is exposed by the data source control to bind to the data-bound control.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the GridView instance is cast to an IDataBoundControl interface.

If the data source contains multiple sources of data, use this property to set the specific data table, collection, or other data for the control to bind to. For example, if the data source is a DataSet instance that contains multiple tables, you can specify which table to bind the control to by using this property.

ASP.NET Dynamic Data supports this property.

Applies to