and also cannot add subitems to a ListView control in .net, for example in c# i have this code:
this.listView1.Items.Add(A.Key);
this.listView1.Items[i].SubItems.Add(Convert.ToString(A.Value));
this.listView1.Items[i].SubItems.Add(Convert.ToString(A1[A.Key]))
How to "convert" or use same feature in asp.net page, with idea of adding items and subitems too in a list view control.