1. 首页
  2. 数据库
  3. 其它
  4. js 父页中的单选按钮取值

js 父页中的单选按钮取值

上传者: 2021-01-04 08:35:12上传 PDF文件 25.19KB 热度 8次
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(star
用户评论