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
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