Can we call the Method of a controller from another controller in asp.net MVC?
You could also simply redirect straight to the method like so:
public class ThisController { public ActionResult Index() { return RedirectToAction("OtherMethod", "OtherController"); } }