Quote Originally Posted by azsx123 View Post
I do. Thanks so much! =)
Code:
        public ViewResult Index()
        {
            IList<NewsModel> items = (from item in db.BatchNews
                                     orderby item.ID descending
                                     select item).ToList();
            return View(db.BatchNews.ToList());
        }
return View(items);

Second on what Gary said. Think carefully what information others will need to help you and include that. (That does not mean posting 100's lines of irrelevant code).