关于asp.net DropDownList控件问题(急,在线等...)
我有一张表(sqlserver)里面字段有:kindid(int)typeid(int)kindname(ntext)kindid是主键,typeid存的是类型分组,ki...
我有一张表(sql server)
里面字段有:
kindid(int) typeid(int) kindname(ntext)
kindid是主键,typeid存的是类型分组,kindname是类别名称
我想让DropDownList显示出数据来
DropDownList1显示typeid为1的kindname;
DropDownList2显示typeid为2的kingname;
怎么实现啊?
我是这样绑定的:
DataSet ds = plankind.getDataSet();;
this.DropDownList1.DataSource = ds.Tables[0].DefaultView;
this.DropDownList1.DataTextField = "kind_name";
this.DropDownList1.DataValueField = "type_id";
this.DropDownList1.DataBind();
this.DropDownList1.Items.Insert(0, new ListItem("--请选择--", "0"));
this.DropDownList2.DataSource = ds.Tables[0].DefaultView;
this.DropDownList2.DataTextField = "kind_name";
this.DropDownList2.DataValueField = "type_id";
this.DropDownList2.DataBind();
this.DropDownList2.Items.Insert(0, new ListItem("--请选择--", "0"));
可是两个 DropDownList 就会显示出所有的来,怎么办?? 展开
里面字段有:
kindid(int) typeid(int) kindname(ntext)
kindid是主键,typeid存的是类型分组,kindname是类别名称
我想让DropDownList显示出数据来
DropDownList1显示typeid为1的kindname;
DropDownList2显示typeid为2的kingname;
怎么实现啊?
我是这样绑定的:
DataSet ds = plankind.getDataSet();;
this.DropDownList1.DataSource = ds.Tables[0].DefaultView;
this.DropDownList1.DataTextField = "kind_name";
this.DropDownList1.DataValueField = "type_id";
this.DropDownList1.DataBind();
this.DropDownList1.Items.Insert(0, new ListItem("--请选择--", "0"));
this.DropDownList2.DataSource = ds.Tables[0].DefaultView;
this.DropDownList2.DataTextField = "kind_name";
this.DropDownList2.DataValueField = "type_id";
this.DropDownList2.DataBind();
this.DropDownList2.Items.Insert(0, new ListItem("--请选择--", "0"));
可是两个 DropDownList 就会显示出所有的来,怎么办?? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询