无法单击/选中单选按钮

时间:2018-01-31 13:01:43

标签: c# asp.net web-deployment

我正在尝试使用asp.net中的单选按钮,但是如果我选择了正确的单选按钮,左边的单选按钮会被选中,即使我点击了正确的按钮。

这是我的代码:

<asp:RadioButton ID="rdoSmallJars" Text="Small" runat="server" GroupName="measurementSystem" style="z-index: 1; left: 350px; top: -440px; position: absolute; height: 21px;" AutoPostBack="True"/>

<asp:RadioButton ID="rdo1" Text="Test" runat="server" GroupName="measurementSystem" style="z-index: 1; left: 450px; top: -440px; position: absolute; height: 21px;" AutoPostBack="True" />

任何想法? 谢谢

1 个答案:

答案 0 :(得分:0)

您需要为每个单选按钮指定一个值。如果不这样做,它们将具有相同的默认值,单击其中任何一个将等同于单击带有值的第一个。

e.g:

<asp:RadioButton Value="1" ID="rdoSmallJars" Text="Small" runat="server" GroupName="measurementSystem" style="z-index: 1; left: 350px; top: -440px; position: absolute; height: 21px;" AutoPostBack="True"/>

<asp:RadioButton Value="2" ID="rdo1" Text="Test" runat="server" GroupName="measurementSystem" style="z-index: 1; left: 450px; top: -440px; position: absolute; height: 21px;" AutoPostBack="True" />