2

数据绑定仅在页面第一次加载时有效,否则无效。在我的页面的某个地方,我更新并插入了一些新的“名称”,我想在下拉列表中显示新添加的名称。但是如果我重新加载页面,那么新添加的名称将出现在下拉列表中。如何刷新下拉列表中的项目?我认为我的代码应该可以工作。请帮忙。谢谢

 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();

}
4

1 回答 1

1

我假设您有某种按钮可以插入新名称。因此,在您完成插入/更新新名称后,单击此按钮添加对 RefreshDropDown() 的调用。这应该够了吧。

于 2013-06-13T18:06:06.740 回答