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