从每个单选按钮列表发送信息,以便在按下搜索按钮后进行回发。 有谁知道怎么做?我想知道用3个RadioButtons列表来做这个是个好主意???
<div class="filtselect">
<span id="" class="text-bold">Colocación:</span>
<asp:RadioButtonList Visible=true ID="RadioButtonList1" runat="server">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" Value="2"></asp:ListItem>
<asp:ListItem Text="No colocados" Value="3">
</asp:ListItem>
</asp:RadioButtonList>
<hr>
<span id="" class="text-bold">Gestión:</span>
<asp:RadioButtonList Visible=true ID="RadioButtonList2" runat="server">
<asp:ListItem Text="Todos" Value="4"></asp:ListItem>
<asp:ListItem Text="Gestionados" Value="5"></asp:ListItem>
<asp:ListItem Text="No Gestionados" Value="6"></asp:ListItem>
</asp:RadioButtonList>
<hr>
<span id="" class="text-bold">Contacto:</span>
<asp:RadioButtonList Visible=true ID="RadioButtonList3" runat="server">
<asp:ListItem Text="Todos" Value="7"></asp:ListItem>
<asp:listitem text="Contactados" value="8"></asp:listitem>
<asp:listitem text="No contactados" value="9"></asp:listitem>
</asp:RadioButtonList>
</div>
答案 0 :(得分:0)
如果我能正确理解您的问题,您只需阅读搜索按钮中的值,点击rbl1.SelectedValue
等处理程序。