This question has been asked here:
RedirectToAction with parameter
But what if I have two actions with the same name but different parameters? How do I redir
Nevermind guys, actually I could just call the method directly instead of using RedirectToAction like so:
RedirectToAction
return Terms(month, year, deposit, total);
Instead of:
return RedirectToAction("Terms", {month, year, deposit, total});