public ActionResult EditRace(int id, int vote) { if (Request.Browser.Browser == "InternetExplorer") { return(View("ErrorIE")); } ModelState.Clear(); _service.ChangeParticipant(id, vote); return(View("Member", _service.GetAllParticipants().ToList())); }