예제 #1
0
        public DataTable GetNewsGroupByCateAll(string strCate, int group)
        {
            if (strCate != "")
            {
                strCate = strCate.Remove(strCate.LastIndexOf(",")).Replace(",", "','");
            }
            NewsGroupDAO newsGroupDAO = new NewsGroupDAO();

            return(newsGroupDAO.GetNewsGroupByCateAll(strCate, group));
        }