I have an action I call from an anchor thusly, Site/Controller/Action/ID where ID is an int.
Site/Controller/Action/ID
ID
int
Later on I need to redirect to th
I had this issue as well, and quite a nice way to do it if you are within the same controller is to use named parameters:
return RedirectToAction(actionName: "Action", routeValues: new { id = 99 });