I want to add the "Add new" at a specific index, but I am not sure of the syntax. I have the following code:
protected void Page_Load(object sender, Eve
Try this, it will insert the list item at index 0;
DropDownList1.Items.Insert(0, new ListItem("Add New", ""));