日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

DtCms.ActionLabel.Article.cs

發布時間:2025/3/15 编程问答 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 DtCms.ActionLabel.Article.cs 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
using System; using System.Collections.Generic; using System.Text; using System.Data; using DtCms.Common;namespace DtCms.ActionLabel {public class Article{/// <summary>/// 文章調用類(文字)/// </summary>/// <param name="top">顯示條數</param>/// <param name="txtNum">顯示字數</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>暫無數據顯示...</li>");}return strTxt.ToString();}} }

轉載于:https://www.cnblogs.com/xiyang120/archive/2011/04/27/2030698.html

總結

以上是生活随笔為你收集整理的DtCms.ActionLabel.Article.cs的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。