嗨我需要显示一个包含数据的下拉列表但是禁用,我的问题是,然后尽管我设置了我需要在应用程序开始时显示的唯一值,当我设置enable false时数据已经清除,所以我需要知道退出的另一种方法是禁用下拉列表但是有数据。感谢
我的代码
protected void Page_Load(object sender, EventArgs e)
{
//Initialize the combo
Dictionary<int,String> estate = new Dictionary<int,String>();
estadosVenezuela.Add(0,"Pick a state");
DropDownList2.DataValueField = "Key";
DropDownList2.DataTextField = "Value";
DropDownList2.DataBind();
DropDownList2.Enabled = false;
}
我需要值选择一个状态,但禁用下拉列表
答案 0 :(得分:4)
您需要指定DropDownList2.DataSource。现在它没有设置,因此列表中没有任何内容。