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"; 45Controls.Add(_controlToRepeat); 242_controlToRepeat.AutoPostBack = AutoPostBack; 243_controlToRepeat.CausesValidation = CausesValidation; 244_controlToRepeat.ValidationGroup = ValidationGroup; 249SetControlToRepeatID(this, _controlToRepeat, i); 250Page.RegisterRequiresPostBack(_controlToRepeat); 283_controlToRepeat.TextAlign = TextAlign; 286_controlToRepeat.TabIndex = tabIndex; 533_controlToRepeat.Attributes.Clear(); 536_controlToRepeat.Attributes[key] = item.Attributes[key]; 541if (!string.IsNullOrEmpty(_controlToRepeat.CssClass)) { 542_controlToRepeat.CssClass = ""; 546_controlToRepeat.InputAttributes.Add("value", item.Value); 548SetControlToRepeatID(this, _controlToRepeat, repeatIndexOffset); 549_controlToRepeat.Text = item.Text; 550_controlToRepeat.Checked = item.Selected; 551_controlToRepeat.Enabled = _cachedIsEnabled && item.Enabled; 552_controlToRepeat.AccessKey = _oldAccessKey; 554if (_cachedRegisterEnabled && _controlToRepeat.Enabled) { 558Page.RegisterEnabledControl(_controlToRepeat); 561_controlToRepeat.RenderControl(writer);