public void SetChecked(CheckBoxList checkList, string selval, string separator) { selval = separator + selval + separator; //例如:"0,1,1,2,1"->",0,1,1,2,1," for (int i = 0; i < checkList.Items.Count; i++) { checkList.Items[i].Selected = false; string val = separator +...
www.dbjr.com.cn/article/909...htm 2025-5-31