How can styles be applied to CheckBoxList ListItems. Unlike other controls, such as the Repeater where you can specify , you can\'t seem to sp
public bool Repeater_Bind() { RadioButtonList objRadioButton = (RadioButtonList)eventArgs.Item.FindControl("rbList"); if (curQuestionInfo.CorrectAnswer != -1) { objRadioButton.Items[curQuestionInfo.CorrectAnswer].Attributes.Add("Style", "color: #b4fbb1;"); } }