How to select all records in a DropDownList

后端 未结 3 1706
遇见更好的自我
遇见更好的自我 2021-01-24 02:06

I have this DropDownList:



        
3条回答
  •  轮回少年
    2021-01-24 02:49

    May be you have this query,

    DropDownList1.Items.Add(new ListItem("Select All", "0"));
    

提交回复
热议问题