예제 #1
0
        [OutputCacheAttribute(VaryByParam = "*", Duration = 0, NoStore = true)] // will be applied to all actions in MyController, unless those actions override with their own decoration
        public ActionResult index()
        {
            var comicBooks = _comicbookRepo.GetComicBooks2();

            //Console.WriteLine("FUlly responsive ");
            // System.Diagnostics.Debug.WriteLine("SomeText");


            // Not the at comicBooks si the model expected
            return(View("index", comicBooks));
        }