• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

RSS文件输出(ASP.NETC#版)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

StringBuilder sb = new StringBuilder();

            sb.Append("<?xml version=\"1.0\" encoding=\"utf-8\" ?><?xml-stylesheet type=\"text/xsl\" href=\"/Styles/WebBarRss.xslt\"?>");

            sb.Append(System.Environment.NewLine);

            sb.Append("<rss version=\"2.0\">");

            sb.Append(System.Environment.NewLine);

            sb.Append("  <channel>");

            sb.Append(System.Environment.NewLine);

            sb.Append("    <title>" + title + "</title>");

            sb.Append(System.Environment.NewLine);

            sb.Append("    <link>http://www.###.com</link>");

            sb.Append(System.Environment.NewLine);

            sb.Append("    <description>" + title + "</description>");

            sb.Append(System.Environment.NewLine);

            WebBar.BLL.BArticle bArticle = new WebBar.BLL.BArticle();

            IList<ArticleEntity> ArticleEntitys = bArticle.List(int.Parse(ddlRssCount.SelectedValue.ToString()), int.Parse(ddlChannelID.SelectedValue.ToString()));

            foreach (ArticleEntity ae in ArticleEntitys)

            {

                sb.Append("    <item>");

                sb.Append(System.Environment.NewLine);

                sb.Append("      <title><![CDATA["+ae.ArticleTitle+"]]></title>");

                sb.Append(System.Environment.NewLine);

                sb.Append("      <link>http://www.###.com/Article/" + ae.ArticleID.ToString() + ".aspx</link>");

                sb.Append(System.Environment.NewLine);

                sb.Append("      <description><![CDATA["+ae.Description+"]]></description>");

                sb.Append(System.Environment.NewLine);

                sb.Append("      <author>"+ae.ArticleAuthor+"</author>");

                sb.Append(System.Environment.NewLine);

                sb.Append("      <pubDate>"+ae.ArticleCreateTime.ToString("yyyy-MM-dd HH:mm")+"</pubDate>");

                sb.Append(System.Environment.NewLine);

                sb.Append("      <comments>" + ae.CommentCount.ToString() + "</comments>");

                sb.Append(System.Environment.NewLine);

                sb.Append("    </item>");

                sb.Append(System.Environment.NewLine);

            }

            sb.Append("  </channel>");

            sb.Append(System.Environment.NewLine);

            sb.Append("</rss>");

            try

            {

                using (FileStream fs = new FileStream(Server.MapPath(xmlFileName), FileMode.Create, FileAccess.Write, FileShare.Write))

                {

                    using (StreamWriter streamwriter = new StreamWriter(fs, Response.ContentEncoding))

                    {

                        streamwriter.Write(sb);

                        Common.JsUtility.Alert("成功生成RSS聚合内容");

                    }

                }

            }

当然:使用JSP,PHP和ASP的朋友也可以用此方法来尝试一下!具体代码我就不贴出来了!


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NETPaddingOracleAttackEXP发布时间:2022-07-10
下一篇:
asp.netmvc上传下载文件的几种方式发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap