Is it possible to decorate the class with;
[Authorize(Roles = "Admin")]
But have it only apply when you build the application in Release mode?
So in debug mode, the authorize is not applied and you can get to the admin pages without the need to log in.
My admin screens do not require any special user information, only whether you are logged in or not.