Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
4k views

Redirect to action in other controller

I want to redirect from an action in one controller to an action in a second controller. Normally I would use RedirectToAction("actionName", "controllerName", objects); The method I want to redirect ...
4
votes
3answers
1k views

Why is there no internal Controller redirect in ASP.Net MVC (or CodeIgniter)?

ASP.Net MVC Controllers have several methods of forwarding control to another controller or action. However, all of them cause a client redirect, with a 302 and a new browser request. Why is there ...