I want to redirect to an action in other Controller but it doesn\'t work here\'s my code in ProductManagerController:
[HttpPost] public ActionResult RedirectToIm
Try this,
return RedirectToAction("ActionEventName", "Controller", new { ID = model.ID, SiteID = model.SiteID });
Here i mention you are pass multiple values or model also. That's why here i mention that.