I've been through a couple of questions and none of them seem to fit my problem: This, and this.
While these questions do accurately depict creating a custom Authorize Attribute (So no need to go through that in any possible answers), my problem goes a little further:
I need to redirect to specific Views based on which role is being Authorized.)
Example:
[Authorize(Role = "Admin")]
needs to redirect to a different View than:
[Authorize(Role = "User")]
If this is even possible, please provide me with a solution.
Thanks.