ddlCountry已绑定

ddlCountry.DataValueField= "CountryId"
ddlCountry.DataTextFiled= "CountryName";
ddlCountry.DataSource= objCountry.Select();
ddlCountry.DataBind();


使用上述技术。

现在在gridview selectedIndex更改的事件上,我想设置下拉列表的值。我怎样才能做到这一点??
 在gridview后面选择索引更改我正在执行此代码

ddlCountry.SelectedItem.Text = gvCountry.SelectRow.Cells[1].text;


但这使该项目重复
 所以我需要做什么,哪个ddl属性将选择我想要的文本?

最佳答案

它应该工作

ddlCountry.Items.FindByText(gvCountry.SelectRow.Cells[1].text).selected = true;

关于c# - 如何选择特定的下拉列表项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22190948/

10-10 19:15