用radiobutton怎样控制dropdownlist的能否可用

来源:百度知道 编辑:UC知道 时间:2024/06/06 12:10:44
也就是DropDownList的 enabled 属性

<asp:RadioButtonList ID="RadioButtonList1" runat="server"
onselectedindexchanged="RadioButtonList1_SelectedIndexChanged"
RepeatDirection="Horizontal" RepeatLayout="Flow" AutoPostBack="True">
<asp:ListItem Value="True" Selected="True">可用</asp:ListItem>
<asp:ListItem Value="False">不可用</asp:ListItem>
</asp:RadioButtonList>
    
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>a</asp:ListItem>
<asp:ListItem>b</asp:ListItem>
<asp:ListItem>c</asp:ListItem>
<asp:ListItem>d</asp:ListItem>
<asp:ListItem>e</asp:ListItem>
</asp:DropDownList&g