Exemplo n.º 1
0
    private void RptBind()
    {
        TPortalClass.JpCommon JpCommon2 = new TPortalClass.JpCommon();
        if (this.Request.QueryString["cid"] != null)
            this.pis_cid = JpCommon2.queryString2StrID(this.Request.QueryString["cid"].ToString(), 9);

        TPortalClass.JpArticle JpArticle = new TPortalClass.JpArticle();
        string ls_where = " and cid like '" + pis_cid + "%' ";
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, 1, 3);
        DataTable tempTable = dt.Clone();
        //在现有的DatatTable增加一列
        DataColumn col = new DataColumn("showTime", typeof(String));
        //将列添加到DataTable中去
        tempTable.Columns.Add(col);
        //循环  对DataTable重新赋值
        for (int i = 0; i < dt.Rows.Count; i++)
        {
            DataRow dr = tempTable.NewRow();
            for (int j = 0; j < dt.Columns.Count; j++)
            {
                dr[tempTable.Columns[j].ColumnName] = dt.Rows[i][j];
            }
            //获得间隔的时间
            dr["showTime"] = JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt.Rows[i]["crtime"].ToString()));
            tempTable.Rows.Add(dr);
        }
        rptList.DataSource = tempTable;
        rptList.DataBind();
        this.pis_totalCount = JpArticle.SearchdocsByKeyNum(ls_where);
    }
Exemplo n.º 2
0
 public string RptBind()
 {
     TPortalClass.JpCommon JpCommon = new TPortalClass.JpCommon();
     StringBuilder stringBuilder = new StringBuilder();
     TPortalClass.JpArticle JpArticle = new TPortalClass.JpArticle();
     string ls_where = " and cid like '" + pis_cid + "%' and sfzwd='否' ";
     string ls_order = " order by pubtime desc";
     DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, 1, 6);
     int commentCount = 0;
     JpComment jpComment = new JpComment();
     for (int i = 0; i < dt.Rows.Count; i++)
     {
         commentCount = jpComment.GetdocsbyaidAllCount(dt.Rows[i]["aid"].ToString(), pis_cid);
         stringBuilder.Append("<li><a onclick=\"locationDetail('art_detail.aspx?aid=" + dt.Rows[i]["aid"].ToString() + "&cid=" + pis_cid + "','" + locationType + "','1')\">");
         stringBuilder.Append("<img  class=\"scrollLoading\"  src=\"" + dt.Rows[i]["indexdisplaypicpath"].ToString() + "\"><h1>");
         stringBuilder.Append("" + dt.Rows[i]["title"].ToString() + "</h1>");
         stringBuilder.Append("<p class=\"fleft\">" + JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt.Rows[i]["crtime"].ToString())) + "</p><p class=\"fleft\"><span><i class=\"ico-dj\"></i>" + dt.Rows[i]["praiseCount"].ToString() + "</span></p><p class=\"fleft\"><span><i class=\"ico-pl\"></i>" + commentCount + "</span>");
         if (dt.Rows[i]["map_cid"].ToString() != "")
         {
             stringBuilder.Append("<p class=\"fright\"><i class=\"ico-zt\">" + dt.Rows[i]["map_cid"].ToString() + "</i></p>");
         }
         stringBuilder.Append("</a></li>");
     }
     return stringBuilder.ToString();
 }
Exemplo n.º 3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        string ls_aid = "", ls_cid = "", strType = "", ls_page = "1", la_pagesize = "10";
        TPortalClass.JpCommon JpCommon = new TPortalClass.JpCommon();
        //获取参数
        if (this.Request.QueryString["type"] != null)
        {
            strType = this.Request.QueryString["type"].ToString();
        }
        if (this.Request.QueryString["page"] != null)
        {
            ls_page = this.Request.QueryString["page"].ToString();
        }

        if (this.Request.QueryString["cid"] != null)
        {
            ls_cid = this.Request.QueryString["cid"].ToString();
        }
        if (this.Request.QueryString["pagesize"] != null)
        {
            la_pagesize = this.Request.QueryString["pagesize"].ToString();
        }

        JpArticle JpArticle = new JpArticle();
        string ls_where = " and cid = '" + ls_cid + "' ";
        string ls_order = " order by pubtime desc";
        string test = "";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, int.Parse(ls_page), int.Parse(la_pagesize));

        //转换成json格式
        string strJson = JsonConvert.SerializeObject(dt);
        //数据抛出
        Response.Write(strJson);
    }
Exemplo n.º 4
0
    public string showData()
    {
        StringBuilder stringBuilder = new StringBuilder();
        JpArticle JpArticle = new JpArticle();
        string ls_where = " and cid = '" + this.txtcid.Value + "'  and sfzwd='是'";
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, 1, 3);
        JpColumns jpColumns = new JpColumns();
        DataTable dt_column = jpColumns.GetColumnBycid(this.txtcid.Value);
        string strCloumnName = dt_column.Rows[0]["cname"].ToString();
        if (dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {

                string ls_zwdid = dt.Rows[i]["aid"].ToString();
                if (dt.Rows[i]["indexdisplaypicpath"].ToString() != "")
                {
                    stringBuilder.Append("<li><div class='jptx'><a onclick=\"locationDetail('art_detail.aspx?aid=" + dt.Rows[i]["aid"].ToString() + "&cid=" + this.txtcid.Value + "','" + locationType + "','1')\" ><div class='jptxpp'><img src=\"" + dt.Rows[i]["indexdisplaypicpath"].ToString() + "\">");
                }
                else
                {
                    stringBuilder.Append("<li><div class='jptx'><a onclick=\"locationDetail('art_detail.aspx?aid=" + dt.Rows[i]["aid"].ToString() + "&cid=" + this.txtcid.Value + "','" + locationType + "','1')\" ><div class='jptxpp'>" + dt.Rows[i]["title"].ToString() + "");
                }
                stringBuilder.Append("<div class=\"jptxbt\">" + dt.Rows[i]["title"].ToString() + "</div></div></a>");
                string ls_where2 = " and cid = '" + this.txtcid.Value + "' and zwdid='" + ls_zwdid + "' and sfzwd='否' ";
                string ls_order2 = " order by pubtime desc";
                DataTable dt_zwd = JpArticle.SearchdocsByKey(ls_where2, ls_order2, 1, 6);
                if (dt_zwd.Rows.Count > 0)
                {
                    for (int j = 0; j < dt_zwd.Rows.Count; j++)
                    {
                        stringBuilder.Append("<a onclick=\"locationDetail('art_detail.aspx?aid=" + dt_zwd.Rows[j]["aid"].ToString() + "','" + locationType + "','1')\" ><div class=\"jptxsub\"><p>" + dt_zwd.Rows[j]["title"].ToString() + "</p>");
                        if (dt_zwd.Rows[j]["map_cid"].ToString() != "")
                        {
                            stringBuilder.Append("<i class=\"ico-sd\">" + dt_zwd.Rows[j]["map_cid"].ToString() + "</i>");
                        }
                        stringBuilder.Append("</a></div></a>");
                    }
                }
                stringBuilder.Append("</div></li>");
            }
        }
        return stringBuilder.ToString();
    }
Exemplo n.º 5
0
    protected void Page_Load(object sender, EventArgs e)
    {
        string ls_cid = "", ls_page = "1", la_pagesize = "10";
        TPortalClass.JpCommon JpCommon = new TPortalClass.JpCommon();
        if (this.Request.QueryString["cid"] != null)
        {
            ls_cid = JpCommon.queryString2StrID(this.Request.QueryString["cid"].ToString(), 9);
        }
        if (this.Request.QueryString["page"] != null)
        {
            ls_page = JpCommon.Filter(this.Request.QueryString["page"].ToString());
        }
        if (this.Request.QueryString["pagesize"] != null)
        {
            la_pagesize = JpCommon.Filter(this.Request.QueryString["pagesize"].ToString());
        }
        //根据传入的文章栏目ID、页码、页数返回列表信息
        TPortalClass.JpArticle JpArticle = new TPortalClass.JpArticle();
        string ls_where = "", ls_order = "";
        ls_where = " and cid like '" + ls_cid + "%' and sfzwd='否' ";
        ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, int.Parse(ls_page), int.Parse(la_pagesize));
        //复制一个DataTalbe
        DataTable tempTable = dt.Clone();
        //在现有的DatatTable增加一列
        DataColumn col = new DataColumn("showTime", typeof(String));
        //将列添加到DataTable中去
        tempTable.Columns.Add(col);

        //在现有的DatatTable增加一列
        DataColumn col2 = new DataColumn("commentCount", typeof(String));
        //将列添加到DataTable中去
        tempTable.Columns.Add(col2);

        int commentCount = 0;
        JpComment jpComment = new JpComment();
        //循环  对DataTable重新赋值
        for (int i = 0; i < dt.Rows.Count; i++)
        {
            DataRow dr = tempTable.NewRow();
            for (int j = 0; j < dt.Columns.Count; j++)
            {
                dr[tempTable.Columns[j].ColumnName] = dt.Rows[i][j];
            }
            DataTable dtComment = jpComment.Getdocsbyaid_ysh(ls_cid, dt.Rows[i]["aid"].ToString());
            commentCount = dtComment.Rows.Count;
            //获得间隔的时间
            dr["showTime"] = JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt.Rows[i]["crtime"].ToString()));
            dr["commentCount"] = commentCount;
            tempTable.Rows.Add(dr);
        }
        //转换成json格式
        string strJson = JsonConvert.SerializeObject(tempTable);
        //数据抛出
        Response.Write(strJson);
    }
Exemplo n.º 6
0
    private void RptBind()
    {
        TPortalClass.JpCommon JpCommon = new TPortalClass.JpCommon();
        if (this.Request.QueryString["cid"] != null)
            this.pis_cid = JpCommon.queryString2StrID(this.Request.QueryString["cid"].ToString(),9);

        TPortalClass.JpArticle JpArticle = new TPortalClass.JpArticle();
        string ls_where = " and cid like '" + pis_cid + "%' ";
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, 1, 4);
        rptList.DataSource = dt;
        rptList.DataBind();
        this.pis_totalCount = JpArticle.SearchdocsByKeyNum(ls_where);
    }
Exemplo n.º 7
0
    protected void Page_Load(object sender, EventArgs e)
    {
        string ls_aid="",ls_cid="",strType = "", ls_page = "1", la_pagesize = "10";
        TPortalClass.JpCommon JpCommon = new TPortalClass.JpCommon();
        //获取参数
        if (this.Request.QueryString["type"] != null)
        {
            strType = this.Request.QueryString["type"].ToString();
        }
        if (this.Request.QueryString["page"] != null)
        {
            ls_page = this.Request.QueryString["page"].ToString();
        }

        if (this.Request.QueryString["cid"] != null)
        {
            ls_cid = this.Request.QueryString["cid"].ToString();
        }
        if (this.Request.QueryString["pagesize"] != null)
        {
            la_pagesize = this.Request.QueryString["pagesize"].ToString();
        }

        JpArticle JpArticle = new JpArticle();
        string ls_where = " and cid = '" + ls_cid + "' ";
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where,ls_order, int.Parse(ls_page), int.Parse(la_pagesize));
        DataTable tempTable = dt.Clone();
        //在现有的DatatTable增加一列
        DataColumn col = new DataColumn("showTime", typeof(String));
        //将列添加到DataTable中去
        tempTable.Columns.Add(col);
        //循环  对DataTable重新赋值
        for (int i = 0; i < dt.Rows.Count; i++)
        {
            DataRow dr = tempTable.NewRow();
            for (int j = 0; j < dt.Columns.Count; j++)
            {
                dr[tempTable.Columns[j].ColumnName] = dt.Rows[i][j];
            }
            //获得间隔的时间
            dr["showTime"] = JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt.Rows[i]["crtime"].ToString()));
            tempTable.Rows.Add(dr);
        }
        //转换成json格式
        string strJson = JsonConvert.SerializeObject(tempTable);
        //数据抛出
        Response.Write(strJson);
    }
Exemplo n.º 8
0
    public String RptBind()
    {
        StringBuilder stringBuilder = new StringBuilder();
        JpCommon JpCommon = new JpCommon();
        if (this.Request.QueryString["aid"] != null)
        {
            this.pis_aid = JpCommon.queryString2StrID(this.Request.QueryString["aid"].ToString(), 9);
        }

        JpArticle JpArticle = new JpArticle();
        DataTable dt = JpArticle.GetArticleByaid(int.Parse(pis_aid));
        if (dt.Rows.Count > 0)
        {
            pis_cid = dt.Rows[0]["cid"].ToString();
            this.lbljptx.Text = "<h1>\"" + dt.Rows[0]["title"].ToString() + "\"</h1><span><img src=\"" + dt.Rows[0]["indexdisplaypicpath"].ToString() + "\"></span>";
        }

        string ls_where = " and cid = '" + pis_cid + "' and zwdid=" + pis_aid + " and sfzwd='否' ";
        string ls_order = " order by pubtime desc";
        DataTable dt2 = JpArticle.SearchdocsByKey(ls_where, ls_order, 1, 5);
        string strTitle = "";
        if (dt2.Rows.Count > 0)
        {
            for (int i = 0; i < dt2.Rows.Count; i++)
            {
                strTitle = dt2.Rows[i]["title"].ToString();
                if (strTitle.Length > 18)
                {
                    strTitle = strTitle.Substring(0, 18) + "...";
                }
                stringBuilder.Append("<a onclick=\"locationDetail('art_detail.aspx?aid=" + dt2.Rows[i]["aid"].ToString() + "','" + locationType + "','0')\"><li>");
                if (dt2.Rows[i]["indexdisplaypicpath"].ToString() != "")
                {
                    stringBuilder.Append("<img src=\"" + dt2.Rows[i]["indexdisplaypicpath"].ToString() + "\">");
                }
                else
                {
                    stringBuilder.Append("<img src=\"/images/noImg.jpg\">");
                }
                stringBuilder.Append("<h1>");
                stringBuilder.Append("" + strTitle + "</h1><p class=\"fleft\">" + JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt2.Rows[i]["crtime"].ToString())) + "</p></li></a>");
            }
        }

        return stringBuilder.ToString();
    }
Exemplo n.º 9
0
    protected void Page_Load(object sender, EventArgs e)
    {
        //获取参数
        string ls_aid = "", ls_cid = "", ls_page = "1", ls_pagesize = "10";
        JpCommon JpCommon = new JpCommon();
        if (this.Request.QueryString["cid"] != null)
            ls_cid = JpCommon.queryString2StrID(this.Request.QueryString["cid"].ToString(), 9);
        if (this.Request.QueryString["aid"] != null)
            ls_aid = JpCommon.queryString2StrID(this.Request.QueryString["aid"].ToString(), 9);

        if (this.Request.QueryString["page"] != null)
            ls_page = JpCommon.queryString2StrID(this.Request.QueryString["page"].ToString(), 9);
        if (this.Request.QueryString["pagesize"] != null)
            ls_pagesize = JpCommon.queryString2StrID(this.Request.QueryString["pagesize"].ToString(), 9);

        StringBuilder stringBuilder = new StringBuilder();
        JpArticle JpArticle = new JpArticle();
        string ls_where = " and cid = '" + ls_cid + "' ";
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, Convert.ToInt32(ls_page), Convert.ToInt32(ls_pagesize));
        JpColumns jpColumns = new JpColumns();
        string strColumnName = "";
        stringBuilder.Append("[");
        if (dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                DataTable dt_columns = jpColumns.GetColumnBycid(dt.Rows[i]["cid"].ToString());
                if (dt_columns.Rows.Count > 0)
                {
                    strColumnName = dt_columns.Rows[0]["cname"].ToString();
                }
                string ls_zwdid = dt.Rows[i]["aid"].ToString();
                stringBuilder.Append("{\"aid\":\"" + dt.Rows[i]["aid"].ToString() + "\",\"cid\":\"" + dt.Rows[i]["cid"].ToString() + "\",\"cname\":\"" + strColumnName + "\",\"indexdisplaypicpath\":\"" + dt.Rows[i]["indexdisplaypicpath"].ToString() + "\",\"title\":\"" + dt.Rows[i]["title"].ToString() + "\",\"showTime\":\"" + JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt.Rows[i]["crtime"].ToString())) + "\",\"child\":[");
                string ls_where2 = " and cid = '" + ls_cid + "' and zwdid='" + ls_zwdid + "' and sfzwd='否' ";
                string ls_order2 = " order by pubtime desc";
                DataTable dt_zwd = JpArticle.SearchdocsByKey(ls_where2, ls_order2, Convert.ToInt32(ls_page), Convert.ToInt32(ls_pagesize));
                if (dt_zwd.Rows.Count > 0)
                {
                    for (int j = 0; j < dt_zwd.Rows.Count; j++)
                    {
                        stringBuilder.Append("{\"aid\":\"" + dt_zwd.Rows[j]["aid"].ToString() + "\",\"cid\":\"" + dt.Rows[i]["cid"].ToString() + "\",\"cname\":\"" + strColumnName + "\",\"indexdisplaypicpath\":\"" + dt_zwd.Rows[j]["indexdisplaypicpath"].ToString() + "\",\"map_cid\":\"" + dt_zwd.Rows[j]["map_cid"].ToString() + "\",\"title\":\"" + dt_zwd.Rows[j]["title"].ToString() + "\",\"showTime\":\"" + JpCommon.DateDiff(DateTime.Now, Convert.ToDateTime(dt_zwd.Rows[j]["crtime"].ToString())) + "\"");
                        if (j == dt_zwd.Rows.Count - 1)
                        {
                            stringBuilder.Append("}");
                        }
                        else
                        {
                            stringBuilder.Append("},");
                        }
                    }
                }
                stringBuilder.Append("]");
                if (dt.Rows.Count - 1 == i)
                {
                    stringBuilder.Append("}");
                }
                else
                {
                    stringBuilder.Append("},");
                }

            }
        }
        stringBuilder.Append("]");
        //数据抛出
        Response.Write(stringBuilder.ToString());
    }
Exemplo n.º 10
0
    /// <summary>
    /// 根据传入的条件显示新闻列表
    /// </summary>
    /// <param name="pis_cid">栏目ID</param>
    /// <param name="pis_sfzwd">是否主文档</param>
    /// <param name="pis_iftop">是否置顶</param>
    /// <param name="num">显示数量</param>
    /// <returns></returns>
    public string NewsLists(string pis_cid, string pis_sfzwd, string pis_iftop, int page, int pagesize)
    {
        StringBuilder stringBuilder = new StringBuilder();
        string ls_return = "", ls_form = "art_detail.aspx";
        int k = 0;
        TPortalClass.JpArticle JpArticle = new TPortalClass.JpArticle();
        TPortalClass.JpCommon JpCommon = new TPortalClass.JpCommon();
        string ls_where = " and cid like '" + pis_cid + "%' ";
        //专栏
        if (pis_cid == "003")
        {
            ls_where = " and cid like '" + pis_cid + "%' and cid <> '003004' ";
        }
        if (pis_sfzwd != "")
        {
            ls_where += " and sfzwd='" + pis_sfzwd + "' ";
        }
        if (pis_sfzwd == "是")
        {
            ls_form = "column_list_more.aspx";
        }
        if (pis_iftop != "")
        {
            ls_where += " and iftop='" + pis_iftop + "' ";
        }
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, page, pagesize);

        string onclickType = "";
        JpColumns jpColumns = new JpColumns();
        DataTable dtColumns = jpColumns.GetColumnBycid(pis_cid);
        string strColumnName = "";
        if (dtColumns.Rows.Count > 0)
        {
            strColumnName = dtColumns.Rows[0]["cname"].ToString();
        }
        if (dt.Rows.Count > 0)
        {
            if (dt.Rows.Count > pagesize)
            {
                k = pagesize;
            }
            else
            {
                k = dt.Rows.Count;
            }
            JpComment jpComment = new JpComment();
            for (int i = 0; i < k; i++)
            {
                string ls_aid = dt.Rows[i]["aid"].ToString();
                string ls_cid = dt.Rows[i]["cid"].ToString();
                string ls_title = dt.Rows[i]["title"].ToString();
                string ls_pic = dt.Rows[i]["indexdisplaypicpath"].ToString();
                string ls_goodnum = dt.Rows[i]["goodnum"].ToString();
                string ls_url = ls_form + "?aid=" + ls_aid + "&cid=" + ls_cid + "&rnd=" + System.Guid.NewGuid().ToString();
                int commentCount = 0;
                commentCount = jpComment.GetdocsbyaidAllCount(ls_aid, ls_cid);
                DateTime ls_date = DateTime.Parse(dt.Rows[i]["pubtime"].ToString());
                DateTime ls_now = DateTime.Now;
                string ls_time = JpCommon.DateDiff(ls_now, ls_date);
                string strArtType = "0";
                if (ls_form == "art_detail.aspx")
                {
                    strArtType = "1";
                }
                if (pis_sfzwd == "是")
                {
                    onclickType = "locationList('" + ls_url + "','" + locationType + "','" + strColumnName + "')";
                }
                else
                {
                    onclickType = "locationDetail('" + ls_url + "','" + locationType + "','" + strArtType + "')";
                }
                stringBuilder.Append("<li><a onclick=\"" + onclickType + "\" href=\"javascript:void(0)\"><img src=\"images/loading.gif\" data-original=\"" + ls_pic + "\" onError=\"this.src='images/nophoto.jpg';\"><h2>" + ls_title + "</h2>");
                stringBuilder.Append("<p class=\"fleft\"><span>" + ls_time + "</span></p><p class=\"fright\"><i class=\"ico-pl2\"></i><span>" + commentCount + "</span></p></a></li>");
            }
        }

        ls_return = stringBuilder.ToString();
        stringBuilder.Remove(0, stringBuilder.Length);
        return ls_return;
    }
Exemplo n.º 11
0
    //首页顶部4张最新图片资讯
    private void GetNewsPics()
    {
        StringBuilder stringBuilder = new StringBuilder();
        //首页大图显示
        TPortalClass.JpArticle JpArticle = new TPortalClass.JpArticle();
        string ls_where = "  and iftop='1' ";
        string ls_order = " order by pubtime desc";
        DataTable dt = JpArticle.SearchdocsByKey(ls_where, ls_order, 1, 4);
        if (dt.Rows.Count == 4)
        {
            DateTime ls_now = DateTime.Now;
            DateTime ls_date = DateTime.Parse(dt.Rows[0]["pubtime"].ToString());
            DateTime ls_date1 = DateTime.Parse(dt.Rows[1]["pubtime"].ToString());
            DateTime ls_date2 = DateTime.Parse(dt.Rows[2]["pubtime"].ToString());
            DateTime ls_date3 = DateTime.Parse(dt.Rows[3]["pubtime"].ToString());

            string ls_rnd = System.Guid.NewGuid().ToString();
            string ls_aid = dt.Rows[0]["aid"].ToString();
            string ls_aid1 = dt.Rows[1]["aid"].ToString();
            string ls_aid2 = dt.Rows[2]["aid"].ToString();
            string ls_aid3 = dt.Rows[3]["aid"].ToString();

            string ls_cid = dt.Rows[0]["cid"].ToString();
            string ls_cid1 = dt.Rows[1]["cid"].ToString();
            string ls_cid2 = dt.Rows[2]["cid"].ToString();
            string ls_cid3 = dt.Rows[3]["cid"].ToString();

            string ls_pic = dt.Rows[0]["indexdisplaypicpath"].ToString();
            string ls_pic1 = dt.Rows[1]["indexdisplaypicpath"].ToString();
            string ls_pic2 = dt.Rows[2]["indexdisplaypicpath"].ToString();
            string ls_pic3 = dt.Rows[3]["indexdisplaypicpath"].ToString();

            string ls_title = dt.Rows[0]["title"].ToString();
            string ls_title1 = dt.Rows[1]["title"].ToString();
            string ls_title2 = dt.Rows[2]["title"].ToString();
            string ls_title3 = dt.Rows[3]["title"].ToString();

            string ls_url = "art_detail.aspx?aid=" + ls_aid + "&cid=" + ls_cid + "&rnd=" + ls_rnd;
            string ls_url1 = "art_detail.aspx?aid=" + ls_aid1 + "&cid=" + ls_cid1 + "&rnd=" + ls_rnd;
            string ls_url2 = "art_detail.aspx?aid=" + ls_aid2 + "&cid=" + ls_cid2 + "&rnd=" + ls_rnd;
            string ls_url3 = "art_detail.aspx?aid=" + ls_aid3 + "&cid=" + ls_cid3 + "&rnd=" + ls_rnd;

            int commentCount = 0;
            JpComment jpComment = new JpComment();
            commentCount = jpComment.GetdocsbyaidAllCount(ls_aid, ls_cid);
            //第一张大图
            stringBuilder.Append("<a onclick=\"locationDetail('" + ls_url + "','" + locationType + "','1')\" href=\"javascript:void(0);\" ><div class=\"swipe\"><div class=\"xd\"><img src=\"" + ls_pic + "\" onError=\"this.src='images/nophoto.jpg';\" />");
            stringBuilder.Append("<div class=\"jd\"><h1>" + ls_title + "</h1><time>" + JpCommon.DateDiff(ls_now, ls_date) + "</time>");
            stringBuilder.Append("<span><i class=\"ico-pl\"></i>" + commentCount + "</span></div></div></a>");
            commentCount = jpComment.GetdocsbyaidAllCount(ls_aid1, ls_cid1);
            //第二张图
            stringBuilder.Append("<a onclick=\"locationDetail('" + ls_url1 + "','" + locationType + "','1')\" href=\"javascript:void(0);\" ><div class=\"tp1\"><img src=\"" + ls_pic1 + "\" onError=\"this.src='images/nophoto.jpg';\" />");
            stringBuilder.Append("<div class=\"jd\"><h2>" + ls_title1 + "</h2><time>" + JpCommon.DateDiff(ls_now, ls_date1) + "</time>");
            stringBuilder.Append("<span><i class=\"ico-pl\"></i>" + commentCount + "</span></div></div></a>");
            commentCount = jpComment.GetdocsbyaidAllCount(ls_aid2, ls_cid2);
            //第三张图
            stringBuilder.Append("<div class=\"tp\"><ul><li><a onclick=\"locationDetail('" + ls_url2 + "','" + locationType + "','1')\" href=\"javascript:void(0);\" ><img src=\"" + ls_pic2 + "\" onError=\"this.src='images/nophoto.jpg';\" />");
            stringBuilder.Append("<div class=\"jd\"><h2>" + ls_title2 + "</h2><time>" + JpCommon.DateDiff(ls_now, ls_date2) + "</time>");
            stringBuilder.Append("<span><i class=\"ico-pl\"></i>" + commentCount + "</span></div></a></li></ul>");
            commentCount = jpComment.GetdocsbyaidAllCount(ls_aid3, ls_cid3);
            //第四张图
            stringBuilder.Append("<ul><li><a onclick=\"locationDetail('" + ls_url3 + "','" + locationType + "','1')\" href=\"javascript:void(0);\" ><img src=\"" + ls_pic3 + "\" class=\"m05\" onError=\"this.src='images/nophoto.jpg';\" />");
            stringBuilder.Append("<div class=\"jd\"><h2>" + ls_title3 + "</h2><time>" + JpCommon.DateDiff(ls_now, ls_date3) + "</time>");
            stringBuilder.Append("<span><i class=\"ico-pl\"></i>" + commentCount + "</span></div></a></li></ul></div></div>");
        }
        this.lb_head.Text = stringBuilder.ToString();
        stringBuilder.Remove(0, stringBuilder.Length); //清空字节流
        dt.Clear();
    }