我的 .aspx 中有一组单选按钮:
<asp:RadioButton ID="rb1" runat="server" GroupName="rbGroup" Text="RB1" />
<asp:RadioButton ID="rb2" runat="server" GroupName="rbGroup" Text="RB2" />
<asp:RadioButton ID="rb3" runat="server" GroupName="rbGroup" Text="RB3" />
<asp:RadioButton ID="rb4" runat="server" GroupName="rbGroup" Text="RB4" />
我如何在我的 VB.NET 代码中判断它们是否被选中(例如,它们未被 JavaScript 选中)?