I want to redirect to other Umbraco page with model data.
Currently i am just redirecting to other Umbraco page but not with model data.
public ActionResult CNOReplacement(MasterViewModel Model)
{
ViewBag.TestData = "Testing ViewBag data passing !!";
return RedirectToUmbracoPage(1098);
}
Even i have tried by passing viewmodel but that is also not working.