Is the supplied user granted an "Admin" role?
public static bool IsInRoleAdmin(this System.Security.Principal.IPrincipal user)
User to check for the Admin role.
bool isAdmin = Request.IsAuthenticated && User.IsInRoleAdmin();