Not sure what I am missing here.. Should be pretty simple..
tblCurrent does NOT equal NULL tblCurrent.Rows.Count DOES equal 0
if (tblCurrent != null | tblCurrent.Rows.Count != 0)
{
//Do something
}
else
{
// This is what I want
}
It should see that the right condition is 0 so it should return false and put in the else block? What am I missing??