Click here to Skip to main content
15,886,091 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i delete or remove a specific index of row from dropdown
Posted

1 solution

Call RemoveAt on the ListItemCollection of the DropDownList:

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listitemcollection.removeat.aspx[^]

e.g.

C#
var index = 3;

dropDownList1.Items.RemoveAt(index);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900