26 references to DataBoundControlHelper
System.Web (26)
ModelBinding\ControlValueProvider.cs (1)
33Control foundControl = dataControl.FindControl(controlId) ?? DataBoundControlHelper.FindControl(dataControl, controlId);
UI\DataBinder.cs (1)
360return DataBoundControlHelper.IsBindableType(type, enableEnums: true);
UI\HtmlControls\HtmlSelect.cs (1)
528Control control = DataBoundControlHelper.FindControl(this, dataSourceID);
UI\WebControls\BaseDataList.cs (1)
413Control control = DataBoundControlHelper.FindControl(this, dataSourceID);
UI\WebControls\CheckBoxList.cs (1)
232DataBoundControlHelper.EnableDynamicData(this, ItemType);
UI\WebControls\ControlParameter.cs (1)
156Control foundControl = DataBoundControlHelper.FindControl(control, controlID);
UI\WebControls\DataBoundControl.cs (1)
326Control control = DataBoundControlHelper.FindControl(this, dataSourceID);
UI\WebControls\DataKey.cs (1)
202bool hasSameKeyNames = DataBoundControlHelper.CompareStringArrays(aKeys, bKeys);
UI\WebControls\DetailsView.cs (3)
545if (!DataBoundControlHelper.CompareStringArrays(value, DataKeyNamesInternal)) { 2808return DataBoundControlHelper.IsBindableType(type, enableEnums: RenderingCompatibility >= VersionUtil.Framework45); 2976DataBoundControlHelper.EnableDynamicData(this, ItemType);
UI\WebControls\DetailsViewRowsGenerator.cs (1)
112return DataBoundControlHelper.IsBindableType(propertyType, enableEnums: AutoGenerateEnumFields ?? true);
UI\WebControls\FormView.cs (4)
369if (!DataBoundControlHelper.CompareStringArrays(value, DataKeyNamesInternal)) { 1883DataBoundControlHelper.ExtractValuesFromBindableControls(fieldValues, this); 2437return DataBoundControlHelper.IsBindableType(type, enableEnums: this.RenderingCompatibility >= VersionUtil.Framework45); 2612DataBoundControlHelper.EnableDynamicData(this, ItemType);
UI\WebControls\GridView.cs (4)
615if (!DataBoundControlHelper.CompareStringArrays(value, DataKeyNamesInternal)) { 942return DataBoundControlHelper.IsBindableType(type, enableEnums: RenderingCompatibility >= VersionUtil.Framework45); 1102if (!DataBoundControlHelper.CompareStringArrays(value, ClientIDRowSuffixInternal)) { 3646DataBoundControlHelper.EnableDynamicData(this, ItemType);
UI\WebControls\GridViewColumnsGenerator.cs (1)
157return DataBoundControlHelper.IsBindableType(propertyType, enableEnums: AutoGenerateEnumFields ?? true);
UI\WebControls\HierarchicalDataBoundControl.cs (1)
120Control control = DataBoundControlHelper.FindControl(this, dataSourceID);
UI\WebControls\RadioButtonList.cs (1)
304DataBoundControlHelper.EnableDynamicData(this, ItemType);
UI\WebControls\Repeater.cs (2)
543Control control = DataBoundControlHelper.FindControl(this, dataSourceID); 888DataBoundControlHelper.EnableDynamicData(this, ItemType);
UI\WebControls\TemplateField.cs (1)
228DataBoundControlHelper.ExtractValuesFromBindableControls(dictionary, cell);