I need help with access the table column to evaluate if the data is Y(Yes) or N(No).... Please help me fix my if statement.
xClass gProd = new xClass();
gProd.get_ApprovedByY(Convert.ToInt32(lblROW_KEY.Text));
if (gBrand.ErrorFlag)
{
lblErrorMsg.Text = gBrand.ErrorMessage;
}
else
{
if (gProd.DataTable.Rows.) <--HELP How do I check to see if Field ApprovedBy = Y?
{
ckboxDel.Visible = true; <-- IF ApprovedBy = Y set checkbox visibility = true
} &nb ...
Go to the complete details ...