up vote 11 down vote favorite
1
share [g+] share [fb]

I have a controller action which I would like to call another controller action.

Is this a valid thing to do. Is it possible?

link|improve this question

42% accept rate
Related question: stackoverflow.com/questions/1296680/… – Jakub Šturc Feb 9 '10 at 11:23
feedback

2 Answers

up vote 8 down vote accepted

Controller.RedirectToAction

link|improve this answer
1  
This is issuing an HTTP 302 content redirect, involving a browser round trip. Is there a way to get rid of the round trip? – o_o Sep 16 '09 at 14:42
1  
Controller actions are publicly visible HTTP endpoints. If you have two actions which need to do the same things, then what you need is either a set of nonpublic controller methods or a set of services. – yfeldblum Sep 18 '09 at 2:12
1  
inside the controller that you are calling enter return View("viewName", object); inside the other controller call return <controller>(params...) – Abe Feb 16 '10 at 21:11
One could argue that Justice's point about Services is actually a more architecturally sound solution. – Visionary Software Solutions Oct 22 '10 at 18:14
1  
Could you explain more about the services solution? – Sjoerd Sep 1 '11 at 11:10
feedback

As @Justice says you can use RedirectToAction. Also, you can use TempData to pass model (and other) data between controller actions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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