TheConeHead
Programmer
I have a dropdownlist that is populated from a sqldatareader - I am then adding in a "None Selected" after binding the data so it shows at the bottom - How can I move it to the top?
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
mydropdown.Items.Add(new ListItem("text", "value"));
mydropdownlist.DataBind()
mydropdownlias.Items.Insert(0,"None Selected")