How to add an item to a drop down list in ASP.NET? August 4, 2023 by Tarik Try this, it will insert the list item at index 0; DropDownList1.Items.Insert(0, new ListItem("Add New", ""));