Im Using asp .net with Vb Coding.
I have to remove the list of selected items from listbox .
	My doubt is If i run the page again the listbox shows the items which i deleted already.
							
						
					I have to remove the list of selected items from listbox .
Code:
	Dim i As Integer
        For i = 0 To listbox1.Items.Count - 1
            listbox1.Items.Remove(listbox1.SelectedValue.ToString())
        Next
Comment