如何验证单选按钮列表单选按钮?

时间:2012-05-04 10:44:02

标签: c# asp.net

这里我有gridview,其中包含从数据库中检索到的一些值。我们为每行放置了radiobutton列表,每行包含4个radiobutton。 对于特定的行,我希望禁用4个radiobuttons。 为此,我尝试了下面的代码...但它不起作用....

if (j == 0) {
    dtrelative.Rows.InsertAt(rd3, 0);

    // rBtnList.Items[0].Enabled = false;

    //rBtnList.Items[0].Attributes.Add("Enabled","False");
    ////rBtnList.Items[1].Attributes.Add("Enabled", "False");
    ////rBtnList.Items[2].Attributes.Add("Enabled", "False");
    ////rBtnList.Items[3].Attributes.Add("Enabled", "False"); 

    //rtButton.Attributes.Add("Enabled", "False");                    

    rBtnList.HasAttributes.Equals(rtButton).GetType();
    rtButton.Enabled = false;

}

1 个答案:

答案 0 :(得分:0)

尝试使用GridView.RowDataBound Event

例如。

protected void GVRowDataBound(object sender, GridViewRowEventArgs e)
 {
       var radioList= (RadioButtonList) e.Row.FindControl("ID");     
 }