Hello,
i have on dropdown, i want to set specific selected item at top of dropdownlist box when binding items inside dropdowlistbox.
Thanks, Regards,
Upendra Patel
Whatever item you need to insert at position 1st. You can use the code below
DropDownList1.Items.Insert(0, new ListItem("First Item Text", "First Item Value"));
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.