C# Clear all items in ListView
How about DataSource = null; DataBind();
How about DataSource = null; DataBind();
If you’re looking for “in-place” editing of a ListView‘s contents (specifically the subitems of a ListView in details view mode), you’ll need to implement this yourself, or use a third-party control. By default, the best you can achieve with a “standard” ListView is to set it’s LabelEdit property to true to allow the user to … Read more