js 父页中的单选按钮取值

美丽的小花园有许多榕树,一簇簇树叶伸到路面上,树叶真绿的可爱。榕树正在茂盛的时期,好象把它全部生命力都展示给我们看。那么多的树叶,一簇堆在另一簇上面,不留一点缝隙,我仿佛也成了一片树叶。那翠绿的颜色明亮地照耀着我的眼睛,似乎每片叶子上都颤动着一个新的生命。这美丽的北国树啊。
int starvalue = 3;
ContentPlaceHolder ch = (ContentPlaceHolder)Master.FindControl("middlecontent");
RadioButton radio = new RadioButton();
for (int i = 1; i <= 5;i++ )
{
radio = (RadioButton)ch.FindControl("rblStar" + i);
if (radio.Checked == true)
{
starvalue = i;
break;
}
}
MessageBox.Show(starvalue.ToString());

本文js 父页中的单选按钮取值到此结束。只有经历最痛苦的坚持,才能配的上最永久的幸福。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
MVC5下拉框绑定的方法(单选)

MVC实现下拉框联动效果(单选)

Asp.net 中使用GridView控件实现Checkbox单选

asp.net GridView中使用RadioButton单选按钮的方法

ASP.NET中 RadioButtonList 单选按钮组控件的使用方法