コード例 #1
0
ファイル: NewsController.cs プロジェクト: Oldsooh/XGDG
        public ActionResult Show(string id)
        {
            this.Internationalization();

            NewsModel model = new NewsModel();

            if (string.IsNullOrEmpty(id))
            {
                id = "1";
            }

            NewsService newsService = new NewsService();
            model.News = newsService.GetNewsById(Int32.Parse(id));

            if (model.News == null)
            {
                model.News = new Model.News();
                model.News.Title = "该新闻不存在或已被删除";
            }
            else
            {
                AlbumService albumService = new AlbumService();
                int outCount = 0;
                model.RelatedAlbum = albumService.GetAlbumList(string.Empty, model.News.Keywords, 5, 1, out outCount);
                model.RelatedNews = newsService.GetRelatedNews(model.News.Id);
                model.LastNews = newsService.GetPrvNewsById(model.News.Id);
                model.NextNews = newsService.GetNextNewsById(model.News.Id);
            }

            return View(model);
        }
コード例 #2
0
ファイル: NewsController.cs プロジェクト: Oldsooh/XGDG
        /// <summary>
        /// 新闻首页
        /// </summary>
        public ActionResult Index(string category, string page)
        {
            this.Internationalization();

            NewsModel model = new NewsModel();

            if (string.IsNullOrEmpty(page))
            {
                page = "1";
            }

            NewsService newsService = new NewsService();
            model.Page = Int32.Parse(page);

            model.PageSize = 10;//每页显示10张
            model.PageIndex = Int32.Parse(page);
            int count = 0;
            //新闻列表
            if (string.Equals(category, "news", StringComparison.CurrentCultureIgnoreCase))
            {
                category = null;
            }
            model.NewsList = newsService.GetNewsList(category, null, model.PageSize, model.PageIndex, out count);
            //分页
            if (model.NewsList != null && model.NewsList.Count > 0)
            {
                model.PageStep = 10; //页码10个
                model.AllCount = count;
                if (model.AllCount % model.PageSize == 0)
                {
                    model.PageCount = model.AllCount / model.PageSize;
                }
                else
                {
                    model.PageCount = model.AllCount / model.PageSize + 1;
                }
            }

            if (category == null || string.Equals(category, "news", StringComparison.CurrentCultureIgnoreCase))
            {
                CategoryService categoryService = new CategoryService();
                model.Category = categoryService.GetCategoryById(category ?? "news");
            }
            else
            {
                WitBird.Sex.Model.NewsCategory newsCategory = newsService.GetNewsCategoryById(category);
                model.Category = new Model.Category();
                model.Category.Id = newsCategory.Id;
                model.Category.Name = newsCategory.Name;
                model.Category.Description = newsCategory.Description;
                model.Category.Keywords = newsCategory.Keywords;
            }

            //VideoService videoService = new VideoService();
            //猜你喜欢
            //model.Like = videoService.GetLike(16);

            return View(model);
        }
コード例 #3
0
ファイル: NewsController.cs プロジェクト: Oldsooh/XGDG
        /// <summary>
        /// 新闻首页
        /// </summary>
        public ActionResult Index(string page)
        {
            this.Internationalization();

            NewsModel model = new NewsModel();

            if (string.IsNullOrEmpty(page))
            {
                page = "1";
            }

            NewsService newsService = new NewsService();
            model.Page = Int32.Parse(page);

            model.PageSize = 10;//每页显示10张
            model.PageIndex = Int32.Parse(page);
            int count = 0;
            //视频列表
            model.NewsList = newsService.GetNewsList(null, null, model.PageSize, model.PageIndex, out count);
            //分页
            if (model.NewsList != null && model.NewsList.Count > 0)
            {
                model.PageStep = 10; //页码10个
                model.AllCount = count;
                if (model.AllCount % model.PageSize == 0)
                {
                    model.PageCount = model.AllCount / model.PageSize;
                }
                else
                {
                    model.PageCount = model.AllCount / model.PageSize + 1;
                }
            }

            CategoryService categoryService = new CategoryService();
            model.Category = categoryService.GetCategoryById("news");

            VideoService videoService = new VideoService();
            //猜你喜欢
            //model.Like = videoService.GetLike(16);

            return View(model);
        }
コード例 #4
0
ファイル: NewsController.cs プロジェクト: Oldsooh/XGDG
        public ActionResult Show(string id)
        {
            this.Internationalization();

            NewsModel model = new NewsModel();

            if (string.IsNullOrEmpty(id))
            {
                id = "1";
            }

            NewsService newsService = new NewsService();
            model.News = newsService.GetNewsById(Int32.Parse(id));

            //随机推荐
            //model.RecommendRandoms = newsService.GetRecommendRandom(6);

            //猜你喜欢
            //VideoService videoService = new VideoService();
            //model.Like = videoService.GetLike(16);

            //推荐新闻
            //model.RecommendNews = NewsService.GetRecommendRandom(10);

            //推荐小说
            //model.RecommendNovels = NovelService.GetRecommendRandom(10);

            if (model.News == null)
            {
                model.News = new Model.News();
                model.News.Title = "该新闻不存在或已被删除";
            }
            else
            {
                AlbumService albumService = new AlbumService();
                int outCount = 0;
                model.RelatedAlbum = albumService.GetAlbumList(string.Empty, model.News.Keywords, 8, 1, out outCount);
                model.RelatedNews = newsService.GetRelatedNews(model.News.Id);
            }

            return View(model);
        }