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
....
int parameter = Convert.ToInt32(Session["Id"].ToString());
return RedirectToAction("ActionName", new { Id = parameter });