Can anybody tell me how to call a method on a different controller from within an action method? I don\'t want to redirect. I want to call a method on a different controller
Could you just instantiate the controller in your action method and call the other method you need?
public ActionResult YourActionMethod() { SomeController c = new SomeController(); ActionResult result = c.SomeMethod(); return View(); }