예제 #1
0
 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()));
 }