第一种方法
DropDownList1.Items.Insert(0,"请选择XXX");
第二种方法
在第一个位置插入一个项就可以DropDownList1.Items.Insert(0, new ListItem("---请选择---", "0"));