Html.ActionLink(string linkText, string actionName, object routeValues, object htmlAttributes) Html.ActionLink(string linkText, string actionName, RouteValueDictionary routeValues, IDictionary htmlAttributes)
@Html.ActionLink("Back to List", "Index", TempData["SavedRouteValues"], null)
http://www.foo.com/Grid?Count=3&Keys=System.Collections.Generic.Dictionary%602%2BKeyCollection%5BSystem.String%2CSystem.Object %5D&Values=System.Collections.Generic.Dictionary%602%2BValueCollection%5BSystem.String%2CSystem.Object%5D
@Html.ActionLink("Back to List", "Index", (RouteValueDictionary)TempData["SavedRouteValues"], null)
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.