ドロップダウンには、次のようにエンティティモデルからのデータが入力されます。
HotelTestDatabaseEntities hotelData = new HotelTestDatabaseEntities();
var afdelingQuery = from afd in hotelData.Afdelings
orderby afd.afdelingNaam
select afd;
DropDownList1.DataValueField = "afdelingID";
DropDownList1.DataTextField = "afdelingNaam";
DropDownList1.DataSource = afdelingQuery;
DataBind();
ドロップダウンリストの一番上に「値の選択...」アイテムを配置するにはどうすればよいですか?