Is is possible to do a post from an Action \"Save\" in a controller \"Product\" to an Action \"SaveAll\" in a controller \"Category\"??
And also passing
You can declare a form like this in your View and can specify whatever controller or Action you wish.
Html.BeginForm("SaveAll", "Category", FormMethod.Post);
If you are in a controller then you can use.
TempData["Model"] = Model; RedirectToAction("SaveAll", "Category");