how to pass data with redirect in action result mvc code example
Example 1: mvc redirect to action with parameters
return RedirectToAction("Action","controller", new {@id=id});
Example 2: mvc redirect to action with parameters
return RedirectToAction( "Main", new RouteValueDictionary(
new { controller = controllerName, action = "Main", Id = Id } ) );