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
If your need to redirect to an action outside the controller this will work.
return RedirectToAction("ACTION", "CONTROLLER", new { id = 99 });