Can we call two controller action methods simultaneously.

Posted by Isabelapascual under ASP.NET on 7/14/2017 | Points: 10 | Views : 1996 | Status : [Member] | Replies : 1
How we can call multiple controllers actions methods. Example like that I have a BankController and once hit it and need to jump another controller without clicking on others UI.




Responses

Posted by: Sheonarayan on: 7/14/2017 [Administrator] HonoraryPlatinum | Points: 25

Up
0
Down
From inside the controller action method write RedirectToAction("ActionMethod", "ControllerName"); this will do the work for you.

Thanks

Regards,
Sheo Narayan
http://www.dotnetfunda.com

Isabelapascual, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response