vote up 0 vote down star

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?

flag

65% accept rate

1 Answer

vote up 1 vote down check

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|flag

Your Answer

Get an OpenID
or

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