GridView.CreateChildControls Method (IEnumerable, Boolean)
.NET Framework 3.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Creates the control hierarchy used to render the GridView control using the specified data source.
Namespace: System.Web.UI.WebControlsAssembly: System.Web (in system.web.dll)
protected: virtual int CreateChildControls ( IEnumerable^ dataSource, bool dataBinding ) override
protected int CreateChildControls ( IEnumerable dataSource, boolean dataBinding )
protected override function CreateChildControls ( dataSource : IEnumerable, dataBinding : boolean ) : int
Not applicable.
Parameters
- dataSource
An System.Collections.IEnumerable that contains the data source for the GridView control.
- dataBinding
true to indicate that the child controls are bound to data; otherwise, false.
Return Value
The number of rows created.| Exception type | Condition |
|---|---|
| dataSource returns a null DataSourceView. -or- dataSource does not implement the ICollection interface and cannot return a TotalRowCount. -or- AllowPaging is true and dataSource does not implement the ICollection interface and cannot perform data source paging. -or- dataSource does not implement the ICollection interface and dataBinding is set to false. |
Community Additions
ADD
Show:
Note: