vote up 2 vote down star

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

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

flag

45% accept rate

2 Answers

vote up 5 vote down check

Controller.RedirectToAction

link|flag
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 at 14:42
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. – Justice Sep 18 at 2:12
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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