public ActionResult SearchString(string sub) { List <Restaurant> newList = MethodCalls.SearchRestName(sub); ViewBag.restList = newList; return(RedirectToAction("All")); }
public ActionResult SearchBox(FormCollection form) { List <Restaurant> searchList = MethodCalls.SearchRestName(Request.Form["Search_Info"]); TempData["search"] = searchList; return(RedirectToAction("All")); }