我想在下拉列表中的一个非0的索引处插入一个项目。我已经从我的下拉数据值字段中绑定了从1开始的标识,并希望在0以外的选定值上插入项目&# 34; n",n是任何数字。我可以得到一些帮助吗? 这是我的代码:
public void Bind_ddlSelectGroup()
{
using(SqlCommand cmd = new SqlCommand("select g.GroupId, g.GroupName from timeOtime.dbo.[Group] as g where IsDeleted=0", Database.con))
{
using(SqlDataAdapter sda = new SqlDataAdapter(cmd))
{
DataSet ds = new DataSet();
sda.Fill(ds);
ddlSelectGroup.DataSource = null;
ddlSelectGroup.DataSource = ds.Tables[0];
ddlSelectGroup.DataTextField = "GroupName";
ddlSelectGroup.DataValueField = "GroupId";
ddlSelectGroup.DataBind();
}
}
ddlSelectGroup.Items.Insert(0, new ListItem("--Select All Groups--", "0"));
}
我想插入一个项目为" - 取消组合 - "在下拉列表中。