Questions
Try
if (!(i == 'InvKey' || i == 'PostDate')) {
or
if (i != 'InvKey' || i != 'PostDate') {
that says if i does not equals InvKey OR PostDate
InvKey
PostDate
~ Answered on 2012-05-23 15:05:31