Check multiple items in ASP.NET CheckboxList

Viewed 42712

I try to check multiple values in ASP.NET CheckboxList but I couldn't.
I Wrote :

chkApplications.SelectedValue = 2;
chkApplications.SelectedValue = 6;

But it just selects item with value '6'
What's wrong ?

4 Answers
Related