asp.net如何取RadioButton的值?
现在有两个RadioButton,id分别为man,women.在sex组里面。现在如果选择了男,那么该如何读取出呢?...
现在有两个RadioButton,id分别为man,women.在sex组里面。
现在如果选择了男,那么该如何读取出呢? 展开
现在如果选择了男,那么该如何读取出呢? 展开
5个回答
展开全部
//判断是哪个选中,。。。
if (RadioButtonman.Checked)
{
//获取选中的值
string aa = RadioButtonman.Text;
//GG
}
else
{
//获取选中的值
string aa = RadioButtonwomen.Text;
//就是 MM 咯。。
}
if (RadioButtonman.Checked)
{
//获取选中的值
string aa = RadioButtonman.Text;
//GG
}
else
{
//获取选中的值
string aa = RadioButtonwomen.Text;
//就是 MM 咯。。
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string sex = "";//定义一个名为sex的空的字符串
if(this.radiobutton.checkd)//如果radiobutton这个控件被选中
{
string sex = this.radiobutton.selectvalue;//获取控件的值。
}
if(this.radiobutton.checkd)//如果radiobutton这个控件被选中
{
string sex = this.radiobutton.selectvalue;//获取控件的值。
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string name=string.Empty;
name=man.checked?man.text:women.text
如果男的选择了,就是男的,如果女的选择了就是女的
name=man.checked?man.text:women.text
如果男的选择了,就是男的,如果女的选择了就是女的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string str="";
foreach(Control ctl in this.Controls[1].Controls)
{
if(ctl is RadioButton)
{
RadioButton rbt = (RadioButton) ctl;
if(rbt.Checked==true)
{
str=rbt.Text;
}
}
}
foreach(Control ctl in this.Controls[1].Controls)
{
if(ctl is RadioButton)
{
RadioButton rbt = (RadioButton) ctl;
if(rbt.Checked==true)
{
str=rbt.Text;
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
RadioButton的ID要一样。获取的只是Value
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询