[Solved] Returning two RedirectToAction from controller C#.net MVC


There is not a way to return more than one redirect. It wouldn’t make sense, as one redirect would be processed right after the other, resulting in only the final redirect being effective.

If you want to incorporate two pages into one, you can use partial views.

solved Returning two RedirectToAction from controller C#.net MVC