I have an action I call from an anchor thusly, Site/Controller/Action/ID where ID is an int.
Later on I need to redirect to th
If your parameter happens to be a complex object, this solves the problem. The key is the RouteValueDictionary constructor.
return RedirectToAction("Action", new RouteValueDictionary(Model))
If you happen to have collections, it makes it a bit trickier, but this other answer covers this very nicely.