示例#1
0
        public ActionResult Index()
        {
            ViewBag.Message = "Your application description page.";
            ProduktBLL produkt = new ProduktBLL();

            return View("index", produkt.hentAlle());
        }
示例#2
-1
 // GET: Produkter
 public ActionResult Index()
 {
     if (Session["Rolle"] == null || Session["Rolle"].ToString() != "admin")
     {
         RedirectToAction("Index", "Home");
     }
     ProduktBLL produkt = new ProduktBLL();
     return View("index", produkt.hentAlle());
 }