public ActionResult Index(int?page) { int pageN = page ?? 1; var model = _data.GetEventList().ToList(); return(View(model.ToPagedList(pageN, 30))); }