Custom Authorize Attribute & Forms authentication
问题 I Have a custom Authorize Attribute, that simply looks like this so far: (I'll add more logic later. I just want to see this work first). public class CustomAuthorizeAttribute : AuthorizeAttribute { public override void OnAuthorization(AuthorizationContext filterContext) { base.OnAuthorization(filterContext); } } Then I place my attribute onto a controller: [CustomAuthorize(Order = 0)] public class MyController : Controller Now, This all works well & dandy, until my forms authentication runs