本文主要提供代码,创建自己的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(); // 实例化对象
string strRSS = "";
private void Page_Load(object sender, System.EventArgs e)
{
Response.ContentType = "application/xml"; // 输出并按xml数据显示
Response.Write (GetRSS());
}
/// <summary>
/// 取得聚合文章
/// </summary>
public string GetRSS()
{
DataSet ds = gr.GenerateRSS(); // 调用GenerateRSS()方法,获得数据
strRSS = strRSS + "<rss version=\"2.0\">";
strRSS = strRSS + "<channel>";
strRSS = strRSS + "<title>土人制造</title>";
strRSS = strRSS + "<link>http://ponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}