You can try RedirectToAction if you do some processing on the first controller and then send the result to another controller.
View
using(@Html.BeginForm("firstaction", "search", FormMethod.Post)){
controller
public class SearchController { [HttpPost] public ActionResult FirstAction() {
frictionlesspulley
source share