Example #1
0
        public ActionResult AllBlog()
        {
            if (Check())
            {
                return(RedirectToAction("Index", "Login"));
            }
            BlogClient service = new BlogClient();

            MyBlog[] arr = service.GetAllBlog();
            return(View(arr));
        }