04|06|07|08|
for (int i = 0; i < expert.CountryID.Split('|').Length; i++) { for (int j = 0; j < chkCountry.Items.Count; j++) { if (expert.CountryID.Split('|')[i] == chkCountry.Items[j].Value) { chkCountry.Items[j].Selected = true; } } }
04|06|07|08|
for (int i = 0; i < expert.CountryID.Split('|').Length; i++) { for (int j = 0; j < chkCountry.Items.Count; j++) { if (expert.CountryID.Split('|')[i] == chkCountry.Items[j].Value) { chkCountry.Items[j].Selected = true; } } }