In .NET 2.0, you can do the following:
<asp:DropDownList ID="MyDropDownList" AppendDataBoundItems="true" runat="server">
<asp:ListItem Text="" Value="" />
</asp:DropDownList>
Or you can do it the good old fasion way:
MyDropDownList.Items.Insert(0, new ListItem())
Ryan Olshan
ASPInsider | Microsoft MVP, ASP.NET
http://ryanolshan.comHow to ask a question