public ActionResult Vote() { int id = Convert.ToInt32(Request.Form["id"]); if (!BGKFunction.IsVoted(id)) { string[] optionID = Request.Form["optionID"].Replace("%2c", ",").Split(','); for (int i = 0; i < optionID.Length; i++) { bgk_anket_secim selection = new bgk_anket_secim(); if (Session["memberInfo"] != null) { selection.UyeID = (int)Session["memberID"]; } else { selection.OylayanIP = BGKFunction.GetIPAddress(); } selection.SecenekID = Convert.ToInt32(optionID[i]); selection.SecimTarihi = DateTime.Now; Db.bgk_anket_secim.Add(selection); } Db.SaveChanges(); return(Content("Oy kullandığınız için teşekkür ederiz.<br />Oylar sayılıyor..")); } else { return(Content("Daha önce oy kullandınız..")); } }