Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to generate XML content information of RSS aggregation page through XmlTextWriter

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail how to generate RSS aggregation page XML content information through XmlTextWriter, the editor thinks it is very practical, so share it for you to do a reference, I hope you can get something after reading this article.

Generate RSS aggregation page XML content information through XmlTextWriter implementation

Public partial class Rss2: System.Web.UI.Page {string xmlDoc = "rss.xml"; protected void Page_Load (object sender, EventArgs e) {xmlDoc = Server.MapPath (xmlDoc); GetRSS (); XmlDocument doc = new XmlDocument (); doc.Load (xmlDoc); Response.ContentType = "text/xml"; doc.Save (Response.Output);} / get aggregate articles / public void GetRSS () {DataSet ds = new DataSet (); XmlTextWriter writer = new XmlTextWriter (xmlDoc, Encoding.UTF8) Writer.Formatting = Formatting.Indented;writer.WriteStartDocument (true); writer.WriteComment ("implementation of RSS pages"); writer.WriteStartElement ("rss"); writer.WriteAttributeString ("version", "2.0"); writer.WriteStartElement ("channel"); writer.WriteStartElement ("title"); writer.WriteString ("Danny_RSSDemo"); writer.WriteEndElement (); writer.WriteStartElement ("link"); writer.WriteString ("http://" + Request.ServerVariables [" SERVER_NAME "]); writer.WriteEndElement () Writer.WriteStartElement ("description"); writer.WriteString ("reward for hard work"); writer.WriteEndElement (); writer.WriteStartElement ("copyright"); writer.WriteString ("Copyright 2005"); writer.WriteEndElement (); writer.WriteStartElement ("language"); writer.WriteString ("zh-cn"); writer.WriteEndElement (); foreach (DataRow row in ds.Tables [0] .Rows) {string NewsId = row ["NewsId"] .ToString (); string Heading = row ["Heading"]. ToString () String Content = row ["Content"]. ToString (); string IssueDate = row ["IssueDate"]. ToString (); string ClassId = row ["ClassId"]. ToString (); writer.WriteStartElement ("item"); writer.WriteStartElement ("title"); writer.WriteString (Heading); writer.WriteEndElement (); writer.WriteStartElement ("link"); writer.WriteString ("http://" + Request.ServerVariables [" SERVER_NAME "] +" / NewsShow.aspx?ID= "+ NewsId); writer.WriteEndElement (); writer.WriteStartElement (" description ") Writer.WriteCData (Content); writer.WriteEndElement (); writer.WriteStartElement ("pubDate"); writer.WriteString (IssueDate); writer.WriteEndElement (); writer.WriteStartElement ("category"); writer.WriteString (ClassId); writer.WriteEndElement (); writer.WriteEndElement ();} writer.WriteEndElement (); writer.WriteEndElement (); writer.Flush (); writer.Close () }} this is the end of this article on "how to generate RSS aggregation page XML content information through XmlTextWriter". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report