GridView & checkbox
How to make checkbox checked inside the gridview when cell value is true?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Krishna GaradPosted Nov 30, 2012, 6:57 AM
protected void gridv_RowDataBound(object sender, GridViewRowEventArgs e)
{
// find control here and bind the value
//then check the checkbox
else
//uncheck the checkbox
}