我基本上是在尝试将下拉列表与单选按钮绑定。下拉菜单中有 4 个选项,应根据这些选项选择单选按钮。对于前两个选项,单选按钮应该处于活动状态,而对于下拉菜单中的其余两个对象,单选按钮应该变为非活动状态。
这是我的下拉前端代码:
<asp:DropDownList ID="ddLType" runat="server" Width="406px" Height="23px">
<asp:ListItem Value="Prof">Professional</asp:ListItem>
<asp:ListItem>Enterprise</asp:ListItem>
<asp:ListItem>Maintanence</asp:ListItem>
<asp:ListItem>Reporting</asp:ListItem>
</asp:DropDownList>
这是我的单选按钮代码:
<asp:RadioButtonList ID="rdoMeapSupport" RepeatDirection="Horizontal" runat="server" AutoPostBack="True" >
<asp:ListItem Value="1" Text="Yes" />
<asp:ListItem Value="0" Text="No" />
</asp:RadioButtonList>
如果我们选择专业,则单选按钮应处于活动状态,并且选中“是”选项。对于企业,这两个按钮都应该处于活动状态但未选中。通过维护和报告,按钮应变为非活动状态。