示例#1
0
        public ActionResult getCategoryIsHome()
        {
            try
            {
                _languageId = (int)Session["languageId"];
            }
            catch
            {
            }
            IEnumerable <Content> _list = _services.getCategoryIsHome(_languageId).OrderBy(x => x.isSort);

            return(PartialView(_list.Take(3).ToList()));
        }