返回首页

请告诉别人,如何发送一个DropDownList的数据传输到另一个DropDownList的一些条件,
像我发展的属性应用中,用户选择40量不足,从一个DropDownList和另一个DropDownList的自动显示的值大于40的缺乏。{ BR}所以,每当用户选择一些从第一届的DropDownList的值,第二个DropDownList显示了更大的价值

回答

评论会员:leonidasvijay 时间:2012/02/07
。第一个DropDownList使用的SelectedIndexChanged和其他填充,条件
评论会员:patil.ravi035 时间:2012/02/07
您好

绑定dropdown2 dropdown1选定indexchaged事件;

protected void DropDown1_SelectedIndexChanged(object sender, EventArgs e)

        {

     --- write your connection details and call stored procedure or write below Query

      ------Select ammount from table where amount>DropDown1.selected.item.Text;

            DropDown2.bind();

        }