Any control with Sorted property ?

  • Thread starter Thread starter Steve Caliendo
  • Start date Start date
S

Steve Caliendo

Hi,

Is there any control in asp.net that I can use that will alphabetize a list
for me ?

Thanks,

Steve
 
You can use Arraylist if you have one column in the list or Dataview if you
have multiple columns.

myArrayList.Sort
or
myDataView.Sort = "ColumnName"

Hope this helps.
 
Back
Top