asp 下拉框 二级联动
我有两个下拉框,DDL_city,DDL_county,DDL_city绑定数据库,显示数据表area里的市,我现在想实现DDL_city选择一个市后,DDL_count...
我有两个下拉框,DDL_city,DDL_county,DDL_city绑定数据库,显示数据表area里的市,我现在想实现DDL_city选择一个市后,DDL_county显示对应的县
protected void DDL_city_SelectedIndexChanged(object sender, EventArgs e)
{
SqlDataSource2.SelectCommand = "select distinct county from area where city='" + DDL_city.SelectedValue + "'";
DDL_county.DataSource = SqlDataSource2;
DDL_county.DataBind();
}
DDL_county只能显示第一个DDL_city的市下的县,无论DDL_city选什么,我该怎么做?
网上的实现二级联动太复杂,有没有简单点的方法? 展开
protected void DDL_city_SelectedIndexChanged(object sender, EventArgs e)
{
SqlDataSource2.SelectCommand = "select distinct county from area where city='" + DDL_city.SelectedValue + "'";
DDL_county.DataSource = SqlDataSource2;
DDL_county.DataBind();
}
DDL_county只能显示第一个DDL_city的市下的县,无论DDL_city选什么,我该怎么做?
网上的实现二级联动太复杂,有没有简单点的方法? 展开
3个回答
展开全部
SqlDataSource2.SelectCommand = "select distinct county from area where city='" + DDL_city.SelectedValue + "'";
SqlDataSource2.Select();
SqlDataSource2.Select();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
CascadingDropList连动非常好用,呵呵,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询