Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
public override void ParseValidation(object source, ServerValidateEventArgs args) { args.IsValid = false; int num1 = 0; CheckBoxList list1 = ((Control) source).Parent as CheckBoxList; foreach (ListItem item1 in list1.Items) { if (item1.Selected) { num1 |= int.Parse(item1.Value); } } base.Number = num1; args.IsValid = true; }
What did I miss? Thanks!