2 types derived from BaseDataList
System.Web (2)
UI\WebControls\DataGrid.cs (1)
32public class DataGrid : BaseDataList, INamingContainer {
UI\WebControls\DataList.cs (1)
28public class DataList : BaseDataList, INamingContainer, IRepeatInfoUser, IWizardSideBarListControl {
11 references to BaseDataList
System.Web (11)
UI\WebControls\BaseDataList.cs (4)
167/// <para>Indicatesthe primary key field in the data source referenced by <see cref='System.Web.UI.WebControls.BaseDataList.DataSource'/>.</para> 535/// <para>Raises the <see langword='DataBinding '/>event of a <see cref='System.Web.UI.WebControls.BaseDataList'/> 643/// <para>Raises the <see cref='System.Web.UI.WebControls.BaseDataList.SelectedIndexChanged'/>event of a <see cref='System.Web.UI.WebControls.BaseDataList'/>.</para>
UI\WebControls\DataGrid.cs (5)
925if (BaseDataList.IsBindableType(sampleItemType)) { 947if (BaseDataList.IsBindableType(propType)) { 1040count = (int)ViewState[BaseDataList.ItemCountViewStateKey]; 1191ViewState[BaseDataList.ItemCountViewStateKey] = count; 1202ViewState[BaseDataList.ItemCountViewStateKey] = -1;
UI\WebControls\DataList.cs (2)
858count = (int)ViewState[BaseDataList.ItemCountViewStateKey]; 928ViewState[BaseDataList.ItemCountViewStateKey] = ((dataSource != null) ? count : -1);