hi
Another niggling issule. I am trying to remove all the databound items from my listview but it doesn't work. I am trying to remove the items as i have used the delete command button (alongside with the updateand edit)
I have tried.
But none of these have worked. I have also tried removing the item via it's index.
Could anybody point me in the direction of any other solutions or maybe even justify a possbility of why it isn't clearing. :( things never work how i expect in asp.net
All answers are appreciated
Truez
Another niggling issule. I am trying to remove all the databound items from my listview but it doesn't work. I am trying to remove the items as i have used the delete command button (alongside with the updateand edit)
I have tried.
Code:
listview1.items.clear();
Code:
listview1.datasource = null; listview1.databind();
Could anybody point me in the direction of any other solutions or maybe even justify a possbility of why it isn't clearing. :( things never work how i expect in asp.net
All answers are appreciated
Truez
Comment