asp.net 性别 单选按钮 操作Radiobutton控件
答案:1 悬赏:50 手机版
解决时间 2021-02-20 00:45
- 提问者网友:献世佛
- 2021-02-19 04:12
asp.net 性别 单选按钮 操作Radiobutton控件
最佳答案
- 五星知识达人网友:山有枢
- 2021-02-19 04:49
给你举个小例子
首先拖两个Radiobutton,一个Button
//text属性是Radiobutton显示的值,因为性别只能选一个,所以两个Radiobutton的GroupName是一致的
然后在Button的click事件中
protected void Button1_Click(object sender, EventArgs e)
{
if (RadioButton1.Checked)//说明点的是RadioButton1
{
Response.Write(RadioButton1.Text);//输出RadioButton1.Text,即男
}
if (RadioButton2.Checked)//说明点的是RadioButton1
{
Response.Write(RadioButton2.Text);//输出RadioButton1.Text,即女
}
}
首先拖两个Radiobutton,一个Button
//text属性是Radiobutton显示的值,因为性别只能选一个,所以两个Radiobutton的GroupName是一致的
然后在Button的click事件中
protected void Button1_Click(object sender, EventArgs e)
{
if (RadioButton1.Checked)//说明点的是RadioButton1
{
Response.Write(RadioButton1.Text);//输出RadioButton1.Text,即男
}
if (RadioButton2.Checked)//说明点的是RadioButton1
{
Response.Write(RadioButton2.Text);//输出RadioButton1.Text,即女
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯