All Tags »
ASP.NET »
Generics »
Code (RSS)
Sorry, but there are no more tags available to filter with.
-
An app I am currently working on uses the paradigm of moving items from one listbox to another instead of doing a DB call for each user interaction.
I needed a way to nicely move stuff from left to right and right to left and keep it sorted. By using Generics I found a quick way to sort the data and rebind it to the control. What I ...