public ActionResult Search(TankSearchPostModel postModel) { TempData["postModel"] = postModel; return(RedirectToAction("Index", "TankSearch")); }
public ActionResult Search(TankSearchPostModel postModel, String strDedicatedProduct) { postModel.DedicatedProduct = strDedicatedProduct.Trim(); TempData["postModel"] = postModel; return(RedirectToAction("Index", "TankSearch")); }