I try to clear my listview but the clear method doesn\'t work:
myListView.Items.Clear();
This doen\'t work. When i put a breakpoint at this
Don't bother with Clear(). Just do this: ListView.DataSource = null; ListView.DataBind();
The key is the databind(); Works everytime for me.