C#中的DropDownList控件如何获取它的文本值?

2024-12-13 06:34:01
推荐回答(1个)
回答1:

string a=DropDownList1.SelectedItem.Text;//这是获取选中的文本值
string a=DropDownList1.SelectedValue;//获取DropDownList中你设定的Value值