vote up 2 vote down star

I have an action method, and depending on what is passed to it, I want to redirect to another action in another controller. The action and controller names are determined at run time.

If I return RedirectToAction(), it will force a redirect and change the URL in the browser. What I would like is something like TransferToAction() that can transfer processing of the current request to another action, without doing a redirect. I seem to remember a method behaving like this in earlier previews, but I can't seem to find it in the RC of ASP.NET MVC.

Do you know how I would do this?

UPDATE

I added the following route:

routes.MapRoute(
    "PageRouter",
    "{site}/{*url}",
    new { controller = "PageRouter", 
    	  action = "RoutePage", site = "", url = "" }
);

And the PageRouter controller action RoutePage:

public ActionResult RoutePage(string site, string url)
{
    var controller = new HomeController {ControllerContext = ControllerContext};
    controller.RouteData.Values["controller"] = "Home";
    controller.RouteData.Values["action"] = "Index";

    return controller.Index(site, url);
}

I had to set the controller and action in RouteData for the Home Index view to be rendered. Otherwise, it would look for an Index view in PageRouterController.

I still need to figure out how to create a controller and its action knowing only their names. e.g. I'd like to be able to just call something like this:

public ActionResult RoutePage(string site, string url)
{
    return InvokeAction("Home", "Index");
}

What should go in InvokeAction() ? Do I need to pass it any context?

flag

41% accept rate

1 Answer

vote up 2 vote down

You should be able to just call the other method directly and, assuming that it returns a ViewResult, it will render that view in response to the request and the url will not change. Note, you'll be responsible for making sure that all of the data that the other method needs is available to it. For example if your other method requires some form parameters that weren't provided, you may need to construct a suitable FormCollection and set the ValueProvider of the controller to a ValueProvider based on your FormCollection. Likewise with any arguments required by the method.

link|flag
So I'll have to use reflection to call the action method? I don't know the name of the action or controller I'm redirecting to until run time. – Lance Fisher Feb 12 at 23:43
Also, what about the controller context? This method doesn't seem to be working for me. – Lance Fisher Feb 12 at 23:47
The controller context will be the same. What seems to not be working? Maybe you could post some code. – tvanfosson Feb 13 at 0:45
I added some code of what I have so far. Thanks. – Lance Fisher Feb 13 at 3:03
I'm unsure of what you are trying to accomplish. I was assuming that you were redirecting to another action in the same controller, but you seem to be adding your own routing layer on top of the routing in MVC. I'm not sure you can do what you want and I'm not sure why you would want to. – tvanfosson Feb 13 at 3:16
show 3 more comments

Your Answer

Get an OpenID
or

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