コード例 #1
0
        // GET: Menu
        public ActionResult Index(string search, int?page)
        {
            var         dao      = new FoodDao();
            List <Food> foodList = dao.search(search);

            return(View(foodList.ToPagedList(page ?? 1, 8)));
        }
コード例 #2
0
        //GET:Update
        public ActionResult UpdateMenu(string search, int?page)
        {
            if (!check())
            {
                return(RedirectToAction("Login", "User"));
            }
            var         dao      = new FoodDao();
            List <Food> foodList = dao.search(search);

            return(View(foodList.ToPagedList(page ?? 1, 8)));
        }