GridView里嵌套RadioButton单选

protected void rdbCheck_CheckedChanged(object sender, EventArgs e)
    {
        for (int i = 0; i < this.dgvUserGrouopList.Rows.Count; i++)
        {
            ((RadioButton)this.dgvUserGrouopList.Rows[i].FindControl("rdbCheck")).Checked = false;

        }
        ((RadioButton)sender).Checked = true;

    }
原文地址:https://www.cnblogs.com/danznb/p/3687710.html