public void SelectListIndex(ListControl lc,string values) { string[] tempValues = values.Split(','); if (tempValues.Length > 0) { foreach (string tempvalue in tempValues) foreach (ListItem li in lc.Items) { if (li.Value == tempvalue) li.Selected = true; } } } 相关文章: