1 write to _controlToRepeat
System.Web (1)
UI\WebControls\CheckBoxList.cs (1)
34
_controlToRepeat
= new CheckBox();
23 references to _controlToRepeat
System.Web (23)
UI\WebControls\CheckBoxList.cs (23)
35
_controlToRepeat
.EnableViewState = false;
43
_controlToRepeat
.ID = "0";
45
Controls.Add(
_controlToRepeat
);
242
_controlToRepeat
.AutoPostBack = AutoPostBack;
243
_controlToRepeat
.CausesValidation = CausesValidation;
244
_controlToRepeat
.ValidationGroup = ValidationGroup;
249
SetControlToRepeatID(this,
_controlToRepeat
, i);
250
Page.RegisterRequiresPostBack(
_controlToRepeat
);
283
_controlToRepeat
.TextAlign = TextAlign;
286
_controlToRepeat
.TabIndex = tabIndex;
533
_controlToRepeat
.Attributes.Clear();
536
_controlToRepeat
.Attributes[key] = item.Attributes[key];
541
if (!string.IsNullOrEmpty(
_controlToRepeat
.CssClass)) {
542
_controlToRepeat
.CssClass = "";
546
_controlToRepeat
.InputAttributes.Add("value", item.Value);
548
SetControlToRepeatID(this,
_controlToRepeat
, repeatIndexOffset);
549
_controlToRepeat
.Text = item.Text;
550
_controlToRepeat
.Checked = item.Selected;
551
_controlToRepeat
.Enabled = _cachedIsEnabled && item.Enabled;
552
_controlToRepeat
.AccessKey = _oldAccessKey;
554
if (_cachedRegisterEnabled &&
_controlToRepeat
.Enabled) {
558
Page.RegisterEnabledControl(
_controlToRepeat
);
561
_controlToRepeat
.RenderControl(writer);