ListView::CreateChildControls Method (IEnumerable, Boolean)
Creates the control hierarchy that is used to render the ListView control by using the specified data source.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
protected: virtual int CreateChildControls( IEnumerable^ dataSource, bool dataBinding )
Parameters
- dataSource
- Type: System.Collections::IEnumerable
An object that contains the data source for the ListView control.
- dataBinding
- Type: System::Boolean
true to indicate that the child controls are bound to data; false to indicate that the control will re-create itself from view state during a postback.
| Exception | Condition |
|---|---|
| InvalidOperationException | dataSource returns nullptr for DataSourceView. -or- dataSource does not implement the ICollection interface and cannot return a TotalRowCount value. -or- dataSource does not implement the ICollection interface and dataBinding is set to false. -or- The ListView control does not have a group placeholder specified. -or- The ListView control does not have an item placeholder specified. |
The CreateChildControls method is used to create the control hierarchy of the ListView control.
Note: |
|---|
This method is primarily used by control developers to extend the ListView control. |
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: