【发布时间】:2011-07-11 20:59:31
【问题描述】:
在ascx用户控件中,有一个radiobuttonlist控件:
<asp:RadioButtonList ID="TrueFalse" runat="server" onclick="Radcheck();"
Font-Bold="True" RepeatDirection="Horizontal">
<asp:ListItem Value="0">T</asp:ListItem>
<asp:ListItem Value="1">F</asp:ListItem>
</asp:RadioButtonList>
在 javascript 中,我想检查所有单选按钮列表控件是否被选中。 它将由一个 aspx 页面调用,该页面将具有多个单选按钮列表控件。 请找到解决方案。
【问题讨论】:
标签: .net asp.net radiobuttonlist