解决方法
对于Win Forms:
要获取值(假设你想要一个值,而不是文本)从一个单选按钮,你得到检查的属性:
string value = ""; bool isChecked = radioButton1.Checked; if(isChecked ) value=radioButton1.Text; else value=radioButton2.Text;
对于Web表单:
<asp:RadioButtonList ID="rdoPriceRange" runat="server" RepeatLayout="Flow"> <asp:ListItem Value="Male">Male</asp:ListItem> <asp:ListItem Value="Female">Female</asp:ListItem> </asp:RadioButtonList>
和CS – 在一些按钮点击
string value=rdoPriceRange.SelectedItem.Value.ToString();