|
I have a datatable with a column score specified as string. I am using dataview.sort to sort the results.But the sort is not returning the data I wanted. Suppose if I have score as 100.00 , 99,23,11 etc when I use dataview.sort I am getting results in the following order 100,11,23,99 what I am looking at is I want the data to be returned in the following order 11,23,99,100. Plz help |