文件名称:webfrom-逗号分隔然后删除最后一个逗号.pdf
文件大小:40KB
文件格式:PDF
更新时间:2022-09-10 10:20:58
逗号分隔
CheckBox chk; string strArray = ""; string itemList = ""; int num = 0; foreach (DataGridItem it in MyDataGrid.Items) { chk = (CheckBox)it.Cells[0].Controls[1]; if (chk.Checked) { strArray += it.Cells[1].Text + ";"; itemList += it.Cells[9].Text + ","; num++; } } if (num == 0) { lblMsg.Text = "请选择合并记录"; return; } itemList += ")"; itemList = itemList.Replace(",)",string.Empty);