我的下拉列表将使用来自实体模型的数据填充,如下所示:

    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();


如何将“选择值...”项放在下拉列表的顶部?

最佳答案

对DropDownList1进行绑定后,请添加此代码。

DropDownList1.Items.Insert(0,new ListItem("Please Select One","0"));

关于c# - 如何将标准值放在下拉菜单顶部,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11011554/

10-11 00:00