Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best to do a redirect in an ActionFilterAttribute. I have an ActionFilterAttribute called IsAuthenticatedAttributeFilter and that checked the value of a session variable. If the variable is false, I want the application to redirect to the login page. I would prefer to redirect using the route name "SystemLogin" however any redirect method at this point would be fine.

share|improve this question

4 Answers

up vote 26 down vote accepted

With the route name:

filterContext.Result = new RedirectToRouteResult("SystemLogin", routeValues)

You can also do something like:

            filterContext.Result = new ViewResult
                                       {
                                           ViewName = SharedViews.SessionLost,
                                           ViewData = filterContext.Controller.ViewData
                                       };
share|improve this answer
2  
This works, but shouldn't there be a RedirectToAction method available? – Ben Mills Feb 21 '12 at 19:28

It sounds like you want to re-implement, or possibly extend, AuthorizeAttribute. If so, you should make sure that you inherit that, and not ActionFilterAttribute, in order to let ASP.NET MVC do more of the work for you.

Also, you want to make sure that you authorize before you do any of the real work in the action method - otherwise, the only difference between logged in and not will be what page you see when the work is done.

public class CustomAuthorizeAttribute : AuthorizeAttribute
{
    public override void OnAuthorization(AuthorizationContext filterContext)
    {
        // Do whatever checking you need here

        // If you want the base check as well (against users/roles) call
        base.OnAuthorization(filterContext);
    }
}

There is a good question with an answer with more details here on SO.

share|improve this answer

Try the following, it is very simple and clear:

 public class AuthorizeActionFilterAttribute : ActionFilterAttribute
    {
        public override void OnActionExecuting(FilterExecutingContext filterContext)
        {
           HttpSessionStateBase session = filterContext.HttpContext.Session;
           Controller control = filterContext.Controller as Controller;


            if (control != null)
            {
                if (session["Login"] == null)
                {
                    filterContext.Cancel = true;
                    control.HttpContext.Response.Redirect("./Login");

                }
            }
            base.OnActionExecuting(filterContext);
        }
    }
share|improve this answer
This worked for me, I had to check query string values if any user tries to change query string values and tries to access data which is not authorized to him/her than I am redirecting them to unauthorized message page, using ActionFilterAttribute. – Sameer 2 days ago

you could inherit your controller then use it inside your action filter

inside your ActionFilterAttribute class:

   if( filterContext.Controller is MyController )
      if(filterContext.HttpContext.Session["login"] == null)
           (filterContext.Controller as MyController).RedirectToAction("Login");

inside your base controller:

public class MyController : Controller 
{
    public void  RedirectToAction(string actionName) { 
        base.RedirectToAction(actionName); 
    }
}

Cons. of this is to change all controllers to inherit from "MyController" class

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.