get this error: i think most probably due to enum.parse but i could not able to convert, have a look please.
Specified cast is not valid.
public static bool IsUserAuthenticatedForPage
(ArrayList
arRoles)
{
foreach (RoleNames roleName in arRoles) //THROW ERROR HERE <<<<<<<<<<<<<<< Specified cast is not valid.
{
if (IsCurrentUserInRole(roleN
ame)) { return true; }
}
return false;
}
RoleNames is my enums
Start Free Trial