コード例 #1
0
        //
        // GET: /Survey/

        public ActionResult Index(int id)
        {
            ViewBag.id = id;

            string openid    = Session["openid"].ToString();
            var    meeting   = smm.GetMeetingById(id);
            var    list      = ss.GetSurveyByMid(id);
            int    datacount = mds.GetMeetingDataByMid(id).Count;

            ViewBag.datacount   = datacount;
            ViewBag.SurvayTitle = meeting.survaytitle;
            //return View("Index_old",list);
            return(View(list));
        }