public ActionResult search(string searchName) { if (product.searchByName(searchName).Count() == 0) { TempData["Msg_emptysearch"] = "No Item Match The Search Input"; } IEnumerable <Product> result = product.searchByName(searchName); return(View(result)); }