两个单选按钮ASP.NET C#

前端之家收集整理的这篇文章主要介绍了两个单选按钮ASP.NET C#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个单选按钮用于度量和美国的测量.我加载页面,以便单击度量单选按钮.如何设置两个按钮,以便美国单击时,公制单选按钮,反之亦然?

解决方法

为了使其工作,您必须将两个单选按钮的属性GroupName设置为相同的值:
<asp:RadioButton id="rbMetric" runat="server" GroupName="measurementSystem"></asp:RadioButton>
<asp:RadioButton id="rbUS" runat="server" GroupName="measurementSystem"></asp:RadioButton>

就个人而言,我更喜欢使用RadioButtonList:

<asp:RadioButtonList ID="rblMeasurementSystem" runat="server">
    <asp:ListItem Text="Metric" Value="metric" />
    <asp:ListItem Text="US" Value="us" />
</asp:RadioButtonList>
原文链接:https://www.f2er.com/aspnet/250548.html

猜你在找的asp.Net相关文章