Вы должны установить свойство GroupName в RadioButton.
например:
<asp:RadioButton ID="rbtnOne" runat="server" Text="One" GroupName="Number" />
<asp:RadioButton ID="rbtnTwo" runat="server" Text="Two" GroupName="Number" />
<asp:RadioButton ID="rbtnMan" runat="server" Text="Man" GroupName="Sex" />
<asp:RadioButton ID="rbtnWoman" runat="server" Text="Woman" GroupName="Sex" />
или используйте элемент управления RadioButtonList
<asp:RadioButtonList ID="rbtnListExample" runat="server">
<asp:ListItem Text="TestOne" />
<asp:ListItem Text="TestTwo" />
<asp:ListItem Text="TestThree" />
</asp:RadioButtonList>