этот код возвращает исключение NullReferenceException, поскольку SelectedDataKey еще не выбран. Как я могу проверить, выбран ли DataKey или нет ..
protected void grdRoles_RowDataBound1(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
CheckBox chk = (CheckBox)e.Row.FindControl("chkRole");
int rolecode = Convert.ToInt32(this.grdRoles.DataKeys[e.Row.RowIndex].Value);
BusinessLayer.Customers checkRole = new BusinessLayer.Customers();
bool check = checkRole.CheckRoles(this.grdCustomers.SelectedDataKey.Value.ToString(), rolecode); //this is triggering the nullReferenceException
if (check)
{
chk.Checked = true;
}
}