如何设置与数据库值对应的单选按钮属性

时间:2010-08-11 10:04:27

标签: c# .net asp.net gridview radio-button

我有一个应用程序,以便我的字段与gridview绑定,我将有一个字段名可能已更新,这可能是我的表中的是/否。当我绑定我的值时,我想在网格中显示一个radiobutton,就像我将在该字段中有2个无线电盒即是或否。如果在我的数据库字段中,如果它保存为否我想向用户显示没有选中的单选按钮,如果是,我想显示替代

1 个答案:

答案 0 :(得分:1)

您需要使用gridview rowdatabound事件

protected void yourGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        RadioButton rdb= e.Row.FindControl("yourRadioButton") as RadioButton;
        rdb// set here 
    }
}