日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

DtCms.ActionLabel.Article.cs

發布時間:2025/3/15 61 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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的全部內容,希望文章能夠幫你解決所遇到的問題。

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