Учтите, что есть два действия:
public ActionResult First()
{
//here store the data wither in session or tempdata
//session["data"]=postdata;
//temp["data"]=postdata
return RedirectToAction(“Second”,”ControllerName”);
}
public ActionResult Second()
{
//check for the session or temp variables
return View();
}
Таким образом, вы можете передавать данные с одного URL-адреса на другой