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

I have tried two ways: Response.Redirect() which does nothing, as well as calling a new method inside of the Base Controller that returns an ActionResult and have it return RedirectToAction()... neither of these work.

How can I do a redirect from the OnActionExecuting method?

share|improve this question

3 Answers

up vote 92 down vote accepted
 public override void OnActionExecuting(ActionExecutingContext filterContext)
 {
    ...
    if (needToRedirect)
    {
       ...
       filterContext.Result = new RedirectResult(url);
       return;
    }
    ...
 }
share|improve this answer
6  
+1 for making sense of the question. – Craig Stuntz Jul 9 '10 at 17:13
12  
Instead of new RedirectResult(url) you could also use new RedirectToAction(string action, string controller). This may have been added to MVC after you posted your answer. Your solution put me on the right track anyway. – Manfred Apr 22 '12 at 2:00
1  
+1000 Thank you! – IamStalker Nov 21 '12 at 9:07
Wont this execute what is in your current action? Wouldn't this be a security flaw? Let's say there is a action that deletes a user routed by /Admin/Delete/4. If your condition is to check weither you are an admin, and redirect if not. The user 4 will be deleted, even if you end up redirected, correct? – Pluc Mar 19 at 17:41
@Pluc - OnActionExecuting happens first. If you set the context.Result, then the redirect happens before the action executes. (Verified by personal testing/debugging.) – James Apr 22 at 19:56
show 1 more comment

It can be done this way as well:

    filterContext.Result = new RedirectToRouteResult(
                new RouteValueDictionary
                    {{"controller", "Home"}, {"action", "Index"}});
share|improve this answer

Create a separate class,

    public class RedirectingAction : ActionFilterAttribute
    {
      public override void OnActionExecuting(ActionExecutingContext context)
      {
        base.OnActionExecuting(context);

        if (CheckUrCondition)
        {
            context.Result = new RedirectToRouteResult(new RouteValueDictionary(new
            {
                controller = "Home",
                action = "Index"
            }));
        }
      }
   }

Then, When you create a controller, call this annotation as

[RedirectingAction]
public class TestController : Controller
{
    public ActionResult Index()
    {
        return View();
    }
}
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.