我正在使用javascript填充下拉列表。
for (var i = 1; i < array.length; i++) {
var optn = document.createElement("OPTION");
optn.text = array[i];
optn.value = array[i];
document.getElementById('<%=ddlProductModel.ClientID%>').(options.addoptn);
}
但我无法在codebehind(c#)的回发中获得dropdownlist的selectedValue。任何解决方案?感谢。
亚辛
答案 0 :(得分:2)
在客户端添加值时,您无法通过dropdownlist.SelectedValue
访问所选元素。尝试使用Request.Form["dropdownlistid"]