数据绑定仅在页面第一次加载时有效,否则无效。在我的页面的某个地方,我更新并插入了一些新的“名称”,我想在下拉列表中显示新添加的名称。但是如果我重新加载页面,那么新添加的名称将出现在下拉列表中。如何刷新下拉列表中的项目?我认为我的代码应该可以工作。请帮忙。谢谢
private void RefreshDropDown()
{
String strConnString = System.Configuration.ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString;
SqlConnection con2 = new SqlConnection(strConnString);
SqlDataAdapter sda = new SqlDataAdapter();
SqlCommand cmd1 = new SqlCommand("SELECT DISTINCT [Name] FROM [Main] order by Name asc");
cmd1.Connection = con2;
con2.Open();
DropDownList1.DataSource = cmd1.ExecuteReader();
DropDownList1.DataTextField = "Name";
DropDownList1.DataValueField = "Name";
DropDownList1.DataBind();
con2.Close();
}