I am passing parameter after saving on another view
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult CreateBigBale(CascadingModel bigbalemv)
{
var newbigbale = new Probale();
newbigbale.Prdno = bigbalemv.Prdno;
newbigbale.Codeitem = bigbalemv.CodeItem;
newbigbale.SecID = bigbalemv.SecId;
newbigbale.prdqty = 1;
newbigbale.CID = bigbalemv.Cid;
newbigbale.EntryDate = DateTime.Now;
DB.Probales.Add(newbigbale);
DB.SaveChanges();
return RedirectToAction("PvBB", new { prdNo = bigbalemv.Prdno });
}
Now on Page Load PvBB, i want to display report on base of parameter value.
How to achieve this below is PVBB action
public ActionResult PVBB(int Prdno)
{
return View();
}