人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當(dāng)前位置:蘿卜系統(tǒng)下載站 > 技術(shù)開發(fā)教程 > 詳細(xì)頁面

創(chuàng)建自己的RSS

創(chuàng)建自己的RSS

更新時(shí)間:2022-08-08 文章作者:未知 信息來源:網(wǎng)絡(luò) 閱讀次數(shù):

本文主要提供代碼,創(chuàng)建自己的RSS,供別人訂閱...

--- RSS.aspx

<%@ Page language="c#" Codebehind="RSS.aspx.cs" AutoEventWireup="false" Inherits="Socent.RSS" %>

--- RSS.aspx.cs

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace Socent
{
 /// <summary>
 ///  取得聚合文章
 /// </summary>
 public class RSS : System.Web.UI.Page
 {
  Components.GenRSS gr = new Components.GenRSS(); // 實(shí)例化對(duì)象

  string strRSS = "";

  private void Page_Load(object sender, System.EventArgs e)
  {
   Response.ContentType = "application/xml"; // 輸出并按xml數(shù)據(jù)顯示
   Response.Write (GetRSS());
  }

  /// <summary>
  /// 取得聚合文章
  /// </summary>
  public string GetRSS()
  {  
   DataSet ds = gr.GenerateRSS(); // 調(diào)用GenerateRSS()方法,獲得數(shù)據(jù)

   strRSS = strRSS + "<rss version=\"2.0\">";
   strRSS = strRSS + "<channel>";
   strRSS = strRSS + "<title>土人制造</title>";
   strRSS = strRSS + "<link>http://www.socent.com</link>";
   strRSS = strRSS + "<description>土人制造</description>";
   for(int i = 0; i < ds.Tables[0].Rows.Count; i++)
   {
    strRSS = strRSS + "<item>";
    strRSS = strRSS + "<title><![CDATA["+ds.Tables[0].Rows[i]["Title"]+"]]></title>";
    strRSS = strRSS + "<link>http://www.socent.com/ArticleShow@"+ds.Tables[0].Rows[i]["ID"]+".html</link> ";
    strRSS = strRSS + "<description><![CDATA["+ds.Tables[0].Rows[i]["Description"]+"]]></description>";
    strRSS = strRSS + "<copyright>土人制造</copyright>";
    strRSS = strRSS + "<pubDate>"+Convert.ToDateTime(ds.Tables[0].Rows[i]["AddDate"].ToString()).ToString("yyyy-MM-dd HH:mm")+"</pubDate>";
    strRSS = strRSS + "<comments>http://www.socent.com/CommentShow@"+ds.Tables[0].Rows[i]["ID"]+".html</comments>";
    strRSS = strRSS + "</item>";
   }
   strRSS = strRSS + "</channel>";
   strRSS = strRSS + "</rss>";
  
   return strRSS;
  }

  #region Web 窗體設(shè)計(jì)器生成的代碼
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }
 
  /// <summary>
  /// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內(nèi)容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);
  }
  #endregion
 }
}

溫馨提示:喜歡本站的話,請(qǐng)收藏一下本站!

本類教程下載

系統(tǒng)下載排行

網(wǎng)站地圖xml | 網(wǎng)站地圖html
主站蜘蛛池模板: 大竹县| 盈江县| 大港区| 山西省| 玉门市| 通道| 泾阳县| 棋牌| 宁阳县| 于都县| 含山县| 建平县| 云和县| 焦作市| 平昌县| 清水河县| 盈江县| 金华市| 儋州市| 临海市| 嘉峪关市| 马尔康县| 贵阳市| 咸丰县| 沂南县| 乐亭县| 杂多县| 辽阳县| 双江| 蕉岭县| 嘉黎县| 长子县| 石屏县| 南靖县| 河源市| 曲靖市| 准格尔旗| 辽宁省| 曲松县| 大连市| 遵义市|