chechboxがチェックされている行を無効にする必要があります。次のコードを使用してRowDataBoundイベントで試しましたが、エラーが表示されますObject reference not set to an instance of an object
。
CheckBox cbAttachClrReq = (CheckBox)gvEntity.FindControl("chkAdd");
if (cbAttachClrReq.Checked)
{
this.gvEntity.Rows[e.Row.RowIndex].Enabled = false;
}