redirect to action with parameter in mvc code example
Example 1: redirecttoaction with parameters
return RedirectToAction("Action", new { id = 99 });
Example 2: asp.net core redirecttoaction with parameters
RedirectToAction("Action", "Controller" ,new { id });
Example 3: mvc redirect to action with parameters
return RedirectToAction("Action","controller", new {@id=id});
Example 4: mvc redirect to action with parameters
return RedirectToAction( "Main", new RouteValueDictionary(
new { controller = controllerName, action = "Main", Id = Id } ) );