Example #1
0
 //
 // GET: /Index/
 public ActionResult Index()
 {
     BlogModel blogModel = new BlogModel();
     var blogs= blogModel.List().Take(4).OrderByDescending(a => a.CreateTime).ToList();
     ViewBag.Blogs = blogs;
     return View();
 }