asp 下拉框 二级联动
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp 下拉框 二级联动相关的知识,希望对你有一定的参考价值。
我有两个下拉框,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选什么,我该怎么做?
网上的实现二级联动太复杂,有没有简单点的方法?
SqlDataSource2.Select(); 参考技术B CascadingDropList连动非常好用,呵呵,
以上是关于asp 下拉框 二级联动的主要内容,如果未能解决你的问题,请参考以下文章