C# id in.pdf

时间:2022-09-10 10:25:13
【文件属性】:

文件名称:C# id in.pdf

文件大小:42KB

文件格式:PDF

更新时间:2022-09-10 10:25:13

C#  id in

private bool FindSelectedTable(ref System.Data.DataTable table) { List ids = new List(); for (int i = 0; i < this.myDataGrid_d.Items.Count; i++) { if (((CheckBox)myDataGrid_d.Items[i].FindControl("cb_choice")).Checked) { DataGridItem item = myDataGrid_d.Items[i]; ids.Add((item.FindControl("lb_id") as Label).Text); } } if (ids.Count == 0) { ShowMessage("请选择数据行!"); return false; } string idsString = string.Join(",", ids.ToArray()); table.DefaultView.RowFilter = "ID in (" + idsString + ")"; table = table.DefaultView.ToTable(); return true; }


网友评论