Exemple #1
0
        void GetNewsList()
        {
            if (!string.IsNullOrEmpty(Request.Query["page"]))
            {
                m_page.page = int.Parse(Request.Query["page"]);
            }
            string nt_id = Request.Query["nt_id"];
            long   total = 0;

            m_newslist   = m_inc.GetNewsList(m_page.page.ToString(), m_page.limit.ToString(), ref total, nt_id);
            m_page.total = total;
        }