DropDownlist重复清单问题

//定义的数据源DropDownList的数据源
          this.DropDownList1.DataSource = back_stage_management.GetListData();
          //定义DropDownList数据源中的数据文本字段
          DropDownList1.DataTextField = "Text";
          //定义DropDownList数据源中的数据文本字段
          DropDownList1.DataValueField = "Value";
          //DropDownList数据绑定
          DropDownList1.DataBind();
{

        DataTable ret = new DataTable();
     
        ret.Columns.Add(new DataColumn("Text"));
        ret.Columns.Add(new DataColumn("Value"));
     
        //循环想数据表中添加7条记录
        for (int n = 0;n <1; n++)
        {

            DataRow dr = ret.NewRow();
            dr["Text"] = DateTime.Now.AddYears(-n).ToString("yyyy");
            dr["Value"] = DateTime.Now.AddYears(-n).ToString("yyyy");
            //将数据行添加到数据表对象中
            ret.Rows.Add(dr);
        }
        return ret;
    }
另外,有一个查询按钮,查询没有错误,但是每次查询之后dropdownlist控件就有多一个相同的记录。举个例子:原来下拉中有依次07 06两个,但是单击完一次后就有07 06 07 06了,应该加个ret.columns.clear()吗?

解决方法:1.你将程序代码贴在IfPage.IsPoseBack=FalseThen里面 2.你在每次要新增数据到DropDownList里面去的只前先加入一段程序代码 DropDownList.Items.Clear() 将你的DropDownList的值先清空在新增进去

你可能感兴趣的:(DropDownlist重复清单问题)