Hi, To determine which items are checked you can perform this code. This will check 2 levels of items, but you can add another inner loop if you have a 3 rd level of items. Using C1.Web.Command; foreach (C1WebTreeViewItem mainItem in C1WebTreeView1.Items) { if (mainItem.Selected) { Response.Write(mainItem...