I have these ListBox es.. all of them are DataBind ed to same table and they are in a table type of manner, every row corresponds to its actual value in the datbase. When i switch selection(SelectedIndexChange) on any of these ListBoxes i change the SelectedIndex of all the other ListBox es.
Now i cannot simply select "Sort = true" for any of the ListBox because doing so the values in ListBox es will not correspond to their actual values in other ListBox es. I want to provide an option to sort Acoording to one of the ListBox while keeping the correspondences valid. HOW TO DO IT .Any Suggestions.
I don't want to run any Sorting Algorithm on ListBox, picking every entry(Item) and sorting it and then changing the rest of ListBox es accordingly.