我使用jquery和web方法获取了下拉列表项。如何从代码隐藏或服务器端访问下拉列表选择值?
答案 0 :(得分:0)
//we can assign the selected value of the dropdownlist in the following way,
$('#ddlSuppliers').change(function () {
$("#Label1").html($("#" + '<%=ddlSuppliers.ClientID %>').val());
return false;
});
在这种情况下,我使用了标签。 注意:请确保标签和下拉列表位于更新面板中。