Hello Mr.Daban,
You Can access any control value on rowDataBound event of gridView by using .net control
below code is in c# language
protected void YourGridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[0].Text == 0)
{
((CheckBox)e.Rows.Cells[1].Controls[0]).Checked= true;
}
else if (e.Row.Cells[0].Text == 1)
{
((CheckBox)e.Rows.Cells[1].Controls[0]).Checked= false;
}
}
}