//Get: Manage/Users - //Get: Manage/Users/{id} public ActionResult Users(string id) { ViewBag.Gebruikers = Gebruiker.All(); if (id != null) { ViewBag.Gebruiker = Gebruiker.Find(id); } return(View("~/Views/Manage/Users.cshtml")); }