ASP.NET MVC: RedirectToAction with parameters to POST Action

Nevermind guys, actually I could just call the method directly instead of using RedirectToAction like so:

return Terms(month, year, deposit, total);

Instead of:

return RedirectToAction("Terms", {month, year, deposit, total});

Leave a Comment