int id = DropDownList1.SelectedValue;
/*
或
int id = DropDownList1.SelectedItem.Value
*/
string name = DropDownList1.SelectedItem;
/*
或
string name = DropDownList1.SelectedItem.Text;
*/
希望回答对你有帮助。
string id=DropDownList1.SelectedValue;
string name=DropDownList1.SelectedItem.Text;
或者
string name=DropDownList1.Text;
另外,DropDownList1.SelectedValue返回的是string类型的,DropDownList1.SelectedItem返回的是object类型的
DropDownList1.SelectedValue
或者DropDownList1.SelectedItem.Value
下拉列表中选定值;
DropDownList1.SelectedItem.Text 下拉列表中选定的文本
string id=DropDownList1.SelectedValue.ToString().Trim();
如果你不加上Trim,可能id也会获得空值.如 “123 ”;