asp.net中如何获取radioButton选中的值

2024-11-19 14:28:12
推荐回答(5个)
回答(1):

建议用 RadioButtonList好些,
.aspx 代码:

RepeatDirection="Horizontal">



.cs代码
//获取RadioButtonList 中用户选择的性别

string sex =RadioButtonList1.SelectedItem.Text

回答(2):

RadioButton1,男
RadioButton2,女
写入数据库的性别(sex)列;
if(RadioButton1.Checked)
{
sex="男";
}
if (RadioButton2.Checked)
{
sex = "女";
}

回答(3):

如aspx页有两个radioButton
一个radioButton1(男的)
一个radioButton2(女的)
程序上
if(radioButton1.checked=true)
{
response.write("男");
}
else
{
response.write("女");
}

回答(4):

selected 加判断 直接控件点selected()判断就可以了

回答(5):

问题未表述清楚,无法作答