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