示例#1
0
        public JsonResult GetListOther(int id, int ortherId)
        {
            var obj = Request["key"] != Keyapi
                ? new List <NewsItem>()
                : _dl.GetListOther(id, ortherId);

            return(Json(obj, JsonRequestBehavior.AllowGet));
        }