up vote 13 down vote favorite
share [g+] share [fb]

RedirectToAction is protected, and we can use it only inside actions. But if I want to Redirect in Filter?

public class IsGuestAttribute: ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        if (!Ctx.User.IsGuest) filterContext.Result = (filterContext.Controller as Controller).RedirectToAction("Index", "Home");
    }
}

Something that could make it worked?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 10 down vote accepted

RedirectToAction is just a helper method to construct a RedirectToRouteResult(), so what you do is simply create a new RedirectToRouteResult() passing along a RouteValueDictionary() with values for your action.

link|improve this answer
feedback

Here's a code example:

public override void OnActionExecuting(ActionExecutingContext filterContext)
{

    if (!Ctx.User.IsGuest)
    {
        RouteValueDictionary redirectTargetDictionary = new RouteValueDictionary();
        redirectTargetDictionary.Add("action", "Index");
        redirectTargetDictionary.Add("controller", "Home");

        filterContext.Result = new RedirectToRouteResult(redirectTargetDictionary);
    }
}
link|improve this answer
3  
Or just new RedirectToRouteResult(new RouteValueDictionary { { "controller", "Home" }, {"action", "HomePage" } }) – Domenic Oct 15 '10 at 16:39
6  
If only you could have said that comment with a green resharper underline – CRice Mar 4 '11 at 4:58
feedback

Your Answer

 
or
required, but never shown

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