比较第三个下拉列表

时间:2016-12-02 11:17:17

标签: asp.net

如果你帮助我,那将会很棒。

我有三个下拉列表。

<asp:DropDownList ID="DropDownList1" class="form-control input-sm" runat="server" Width="147px">
  <asp:ListItem>2</asp:ListItem>
  <asp:ListItem>4</asp:ListItem>
  <asp:ListItem>5</asp:ListItem>
  <asp:ListItem>6</asp:ListItem>

  <asp:ListItem>8</asp:ListItem>
  <asp:ListItem>10</asp:ListItem>
  <asp:ListItem>48</asp:ListItem>
  <asp:ListItem>60</asp:ListItem>
</asp:DropDownList>

<asp:DropDownList ID="DropDownList2" class="form-control input-sm" runat="server" Width="147px">
  <asp:ListItem>0.5</asp:ListItem>
  <asp:ListItem>1.0</asp:ListItem>
  <asp:ListItem>1.5</asp:ListItem>
  <asp:ListItem>2</asp:ListItem>
  <asp:ListItem>2.5</asp:ListItem>
  <asp:ListItem>3</asp:ListItem>
  <asp:ListItem>3.5</asp:ListItem>
  <asp:ListItem>4</asp:ListItem>
  <asp:ListItem>4.5</asp:ListItem>
  <asp:ListItem>8.5</asp:ListItem>
  <asp:ListItem>9</asp:ListItem>
  <asp:ListItem>10</asp:ListItem>
  <asp:ListItem>12</asp:ListItem>
  <asp:ListItem>24</asp:ListItem>
  <asp:ListItem>48</asp:ListItem>
</asp:DropDownList>

<asp:DropDownList ID="DropDownList3" class="form-control input-sm" runat="server" Width="147px">
  <asp:ListItem>MET</asp:ListItem>
  <asp:ListItem>Threatened</asp:ListItem>
  <asp:ListItem>Breached</asp:ListItem>
</asp:DropDownList>

现在我的问题是:

如果下拉列表1值&gt; dropdownlist2那么,我应该只在dropdownlist3中看到Met项目(剩下的两个项目应该隐藏。)

再次,

如果下拉列表1的值< dropdownlist2值然后,我应该只在dropdownlist3中看到Breached项目(剩下的两个项目应该隐藏。)

你能帮忙解决这段代码吗?

1 个答案:

答案 0 :(得分:0)

<form action="#" method="post"> <button type="submit" name="maquinas" value="" style="padding:initial"> <img src="imgpath" > </button> </form> 事件添加到OnSelectedIndexChangedDropDownList1,并将DropDownList2设置为AutoPostBack

true

然后在代码背后

<asp:DropDownList ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList_SelectedIndexChanged" AutoPostBack="true">
<asp:DropDownList ID="DropDownList2" runat="server" OnSelectedIndexChanged="DropDownList_SelectedIndexChanged" AutoPostBack="true">