ASP.Net里面怎样实现两个dropdownlist联动

dropdownlist1中有A.B.C3项A.B.C中分别有几组数据要在dropdownlist1选A时,dropdownlist2中显示A的数据.页面刷新也可以.麻烦... dropdownlist1中有A.B.C3项 A.B.C中分别有几组数据 要在dropdownlist1选A时,dropdownlist2中显示A的数据.页面刷新也可以.麻烦告诉的具体点 希望能把SelectedIndexChanged事件中的代码给出来 展开
 我来答
匿名用户
2013-12-20
展开全部
你好,这是我以前学习的时候做的。希望能帮到你。 在页面添加两个dorpdownlist 和一个label控件protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
ArrayList Myarray;
switch (DropDownList1.SelectedValue)
{
case "100":
Myarray = new ArrayList();
Myarray.Add(new ListItem("朝阳区", "0"));
Myarray.Add(new ListItem("宜武区", "1"));
Myarray.Add(new ListItem("丰台区", "2"));
DropDownList2.DataSource = Myarray;
DropDownList2.DataBind();
Label1.Text = "";
break;
case "101": Myarray = new ArrayList();
Myarray.Add(new ListItem("白云区", "0"));
Myarray.Add(new ListItem("南沙区", "1"));
Myarray.Add(new ListItem("天河区", "2"));
DropDownList2.DataSource = Myarray;
DropDownList2.DataBind();
Label1.Text = "";
break;
case "102": Myarray = new ArrayList();
Myarray.Add(new ListItem("澄海区", "0"));
Myarray.Add(new ListItem("龙湖区", "1"));
Myarray.Add(new ListItem("新津区", "2"));
DropDownList2.DataSource = Myarray;
DropDownList2.DataBind();
Label1.Text = "";
break; }
}
protected void DropDownList2_SelectedIndexChanged(object sender, EventArgs e)
{
Label1.Text = DropDownList1.SelectedItem.Text + DropDownList2.SelectedItem.Text;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式