how to sort dropdownlist in c#

  • Thread starter Thread starter suganya
  • Start date Start date
S

suganya

object[] SortedItems = new object[DropDownList1.Items.Count];
for (int i = 0; i < SortedItems.Length; i++)
{
SortedItems = DropDownList1.Items;
}
Array.Sort(SortedItems);
DropDownList1.Items.Clear();
DropDownList1.Items.AddRange(SortedItems);

In the above code i copied items in dropdownlist to arraylist, i sorted arraylist , cleared dropdownlist ..i couldnt add the sorted items to dropdown..

help me

Thanks in advance..

From http://www.developmentnow.com/g/8_2003_12_0_0_0/dotnet-framework-aspnet.ht

Posted via DevelopmentNow.com Group
http://www.developmentnow.com
 
It's always easier to sort things before they go into a dropdown. Where is
the data for the dropdown coming from?


Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top