Yes, after calling the Databind() method, use the use the Items.Insert()
method. Here is an example:
MyDropDown.DataBind()
MyDropDown.Items.Insert(0,"--- Select ---")
This inserts an extra ListItem before index 0, therefore changing what was
previously index 0 into index 1, index 1 into index 2, etc. Since this is
only 1 extra line of code, it is very little extra work, and makes it the
first ListItem regardless of what is in the database. Hopefully this helps.

Signature
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/
> Hello,
>
[quoted text clipped - 6 lines]
>
> Randy.
Randy Galliano - 07 Nov 2007 04:30 GMT
Thank you so much. That worked very well. I put it in the Page_Load
event so I also added a check for ispostback.
Regards,
Randy.
> Yes, after calling the Databind() method, use the use the Items.Insert()
> method. Here is an example:
[quoted text clipped - 6 lines]
> only 1 extra line of code, it is very little extra work, and makes it the
> first ListItem regardless of what is in the database. Hopefully this helps.