Skip to main content

Posts

Showing posts with the label Redirecting unauthorized controller in ASP.NET MVC

Redirecting unauthorized controller in ASP NET MVC

Hello everyone, I am going to share the code sample to Redirect to unauthorized controller action on OnAuthorization  using   ASP.NET MVC . i.e. filterContext.Result = new RedirectToRouteResult ( new RouteValueDictionary { { "Controller" , "Error" }, { "Action" , "AccessDenied" } });    base .OnAuthorization(filterContext); //returns to AccessDenied page URL.      The detail code sample as given below namespace Authorization .Models {     public class CustomAuthorizeAttribute : AuthorizeAttribute     {         public override void OnAuthorization( AuthorizationContext filterContext)         {             AspDotNetUserRepository _aspNetRepo = new AspDotNetUserRepository ();            ...