.net里radiobutton 两个怎么才能让他只选择一个
4个回答
展开全部
把两个radiobutton的GroupName设置成相同的就可以了
<asp:RadioButton ID="RadioButton1" runat="server" GroupName="AA" />
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="AA"/>
如果要设置默认选中哪个,就在它上面加 Checked="true"就可以了
<asp:RadioButton ID="RadioButton1" runat="server" GroupName="AA" />
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="AA"/>
如果要设置默认选中哪个,就在它上面加 Checked="true"就可以了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用radiobuttonList,然后在里面添加几个<ListItem value="" Text="这里写文本也行">这里写文本也行</ListItem>,当解析的时候,会自动生成radiobutton
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用RadioButtonList
<asp:RadioButtonList ID="radSale" runat="server" RepeatColumns="2" RepeatLayout="Flow">
<asp:ListItem Text="是" Value="1"></asp:ListItem>
<asp:ListItem Text="否" Value="0" Selected="True"></asp:ListItem>
</asp:RadioButtonList>
<asp:RadioButtonList ID="radSale" runat="server" RepeatColumns="2" RepeatLayout="Flow">
<asp:ListItem Text="是" Value="1"></asp:ListItem>
<asp:ListItem Text="否" Value="0" Selected="True"></asp:ListItem>
</asp:RadioButtonList>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
两个radiobutton的GroupName设置成一样的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询