how to sort dropdownlist in c#

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
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top