protected void BindRepeater() { var repo = new TaskRepository(); taskList.DataSource = repo.FindAll(); taskList.DataBind(); }
public ActionResult Index() { var repo = new TaskRepository(); ViewData["Tasks"] = repo.FindAll(); return View(); }