Difference between DropDownList.Items.Add and DropDownList.Items.Insert method

 Posted by SheoNArayan on 9/6/2008 | Category: ASP.NET Interview questions | Views: 72234
Answer:

DropDownList.Items.Add method allows you to add new ListItem into the DropDownList. This item will be added as the last item of the DropDownList.

dropDownList.Items.Add(new ListItem("Default Panel", "0"));


DropDownList.Items.Insert method allows you to specify the index of the item within the DropDownList where you want to insert the ListItem.

dropDownList.Items.Insert(0, new ListItem("Default Panel", "0"));


Here Default Value will be added as the first item in the DropDown.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response