示例#1
0
        public ActionResult Vote()
        {
            ViewBag.Message       = "Choose a candidate for each post";
            ViewBag.CandidateList = CandidateList;

            VotingForm p = BlankVotingForm;

            return(View(p));
        }
示例#2
0
 public ActionResult Vote(VotingForm e)
 {
     return(RedirectToAction("Index", "Home"));
 }