简体   繁体   中英

ASP.NET Server Controls - Data Source

I put a dropdownlist on a webform and give a list as datasource. But what can I do, if I want the first item in dropdownlist to be "Select a user" or something like that?

For example: // ddlAllUsers is a DropDownList

        List<REGUSER> users = UserOperations.GetAllUsers();
        ddlAllUsers.DataSource = users;
        ddlAllUsers.DataTextField = "NameLastName";
        ddlAllUsers.DataValueField = "ID";
        ddlAllUsers.DataBind();

Adding a new item in list whose associated property is "Select a user" is a solution, but I don't prefer.

You can actually add an item to your List with required properties.

For example,

List<REGUSER> users = UserOperations.GetAllUsers();
users.Insert( 0, new REGUSER() { NameLastName = "Select a user...", ID = -1 } );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM