标签: c# asp.net drop-down-menu ado.net
int CountryID = Convert.ToInt32(ddlcountry.SelectedValue);
这是ddlcountry选择的什么类型的值, 我的意思是(ddlcountry.SelectedValue);的数据类型是什么?
ddlcountry
(ddlcountry.SelectedValue);
答案 0 :(得分:0)
您必须将其转换为.ToString();
.ToString();
string value = ddlcountry.SelectedValue.ToString();