This documentation is archived and is not being maintained.

HtmlSelect::DataSource Property

Gets or sets the source of information to bind to the HtmlSelect control.

Namespace:  System.Web.UI.HtmlControls
Assembly:  System.Web (in System.Web.dll)

public:
virtual property Object^ DataSource {
	Object^ get ();
	void set (Object^ value);
}
<asp:HtmlSelect DataSource="Object" />

Property Value

Type: System::Object
An IEnumerable or IListSource that contains a collection of values used to supply data to this control. The default value is nullptr.

ExceptionCondition
ArgumentException

The specified data source is not compatible with either System.Collections::IEnumerable or System.ComponentModel::IListSource, and it is not nullptr.

HttpException

The data source cannot be resolved because a value is specified for both the DataSource property and the DataSourceID property.

Use the DataSource property to specify the data source to bind to the HtmlSelect control. A data source must be a collection that implements either the System.Collections::IEnumerable interface (such as System.Data::DataView, System.Collections::ArrayList, or System.Collections.Generic::List<T>) or the IListSource interface. When you set the DataSource property, you must manually write the code to perform data binding.

If the data source contains multiple sets of data, such as a System.Data::DataSet object with multiple tables, use the DataMember property to specify which data set to bind to the control.

You can specify which fields from the data source to bind to the ListItem::Text and ListItem::Value properties of each item in the control by setting the DataTextField and DataValueField properties, respectively.

Alternately, you can use the DataSourceID property to automatically bind to a data source represented by a data source control. When you set the DataSourceID property, the data listing control automatically binds to the specified data source control. You do not need to write code that explicitly calls the DataBind method.

If values are specified for both the DataSource property and the DataSourceID property, ASP.NET is not able to resolve the data source and a System.Web::HttpException exception is thrown.

The following code example demonstrates how to use the DataSource property to specify the source of information to bind to the HtmlSelect control.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: