DtCms.ActionLabel.Article.cs
生活随笔
收集整理的這篇文章主要介紹了
DtCms.ActionLabel.Article.cs
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using DtCms.Common;namespace DtCms.ActionLabel
{public class Article{/// <summary>/// 文章調(diào)用類(文字)/// </summary>/// <param name="top">顯示條數(shù)</param>/// <param name="txtNum">顯示字?jǐn)?shù)</param>/// <param name="isTime">顯示時間</param>/// <param name="chrico">顯示符號</param>/// <param name="where">查詢條件</param>/// <param name="orderby">排序條件</param>/// <returns></returns>public static string ViewTxtList(int top, int txtNum, int isTime, string chrico, string strWhere, string orderby){DtCms.BLL.Article bll = new DtCms.BLL.Article();StringBuilder strTxt = new StringBuilder();DataSet ds = bll.GetList(top, strWhere, orderby);if (ds.Tables[0].Rows.Count > 0){for (int i = 0; i < ds.Tables[0].Rows.Count; i++){DataRow dr = ds.Tables[0].Rows[i];strTxt.Append("<li>");if (isTime == 1){strTxt.Append("<span>[" + string.Format("{0:MM-dd}", dr["AddTime"]) + "]</span>");}strTxt.Append(chrico);strTxt.Append("<a target=\"_blank\" title=\"" + dr["Title"].ToString() + "\" href=\"News_View.aspx?id=" + dr["Id"] + "\">" + StringPlus.CutString(dr["Title"].ToString(), txtNum) + "</a>");strTxt.Append("</li>");}}else{strTxt.Append("<li>暫無數(shù)據(jù)顯示...</li>");}return strTxt.ToString();}}
}
轉(zhuǎn)載于:https://www.cnblogs.com/xiyang120/archive/2011/04/27/2030698.html
總結(jié)
以上是生活随笔為你收集整理的DtCms.ActionLabel.Article.cs的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: GL 与 CV 管线 (pipeline
- 下一篇: 我的服装DRP之开发感悟