猪二哥的小园子儿
小园子儿里的猪二哥
  foreach(GridViewRow gr in gv.Rows)
{
foreach (RepeaterItem item in gr.FindControl("rp").Controls)
{

foreach (Control ct in item.Controls)
{
if (ct.GetType().ToString() == "System.Web.UI.HtmlControls.HtmlInputRadioButton")
{
HtmlInputRadioButton rd = ct as HtmlInputRadioButton;
if (rd.Checked)
{
if (!htQP.ContainsKey(rd.Name))
htQP.Add(rd.Name, rd.Value);
}
}

}
}
}

 

posted on 2011-12-26 17:39  猪小娣  阅读(277)  评论(0编辑  收藏  举报