RSS檔案輸出(ASP.NET C#版)
StringBuilder sb = new StringBuilder();
sb.Append(""?xml-stylesheet>);
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append(" http://www.###.com");
sb.Append(System.Environment.NewLine);
sb.Append("
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("
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append(" http://www.###.com/Article/" + ae.ArticleID.ToString() + ".aspx");
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append("
sb.Append(System.Environment.NewLine);
sb.Append(" ");
sb.Append(System.Environment.NewLine);
}
sb.Append(" ");
sb.Append(System.Environment.NewLine);
sb.Append("");
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的朋友也可以用此方法來嘗試一下!具體程式碼我就不貼出來了!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-616332/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 瞭解下C# 檔案的輸入與輸出C#
- 排序,檔案輸入輸出排序
- 檔案操作-輸入輸出
- asp.net (C#)生成html檔案ASP.NETC#HTML
- C輸入輸出與檔案
- java_檔案輸入與輸出Java
- C# Socket 檔案傳送傳輸C#
- C#解讀RSSC#
- MySQL輸出html格式檔案MySqlHTML
- Django靜態檔案輸出Django
- Webpack原理-輸出檔案分析Web
- python:檔案的輸入與輸出Python
- C++中的檔案輸入/輸出(2):讀取檔案 (轉)C++
- C# 生成RSS通用類C#
- 第10章 對檔案的輸入輸出
- 【C++】標準檔案的輸入輸出!!!C++
- C++中的檔案輸入/輸出(3):掌握輸入/輸出流 (轉)C++
- PowerShell輸出內容到檔案
- Linux下輸出excel檔案LinuxExcel
- 檔案輸入輸出處理(二)-位元組流
- 如何把檔案輸出流替換成位元組輸出流
- C# 匯出DataTable至csv檔案C#
- PE檔案結構(四) 輸出表
- matlab輸出複數到檔案Matlab
- Python進階02 文字檔案的輸入輸出Python
- Rss-Rome 閱讀器讀取XML檔案XML
- asp.net網頁中呼叫c#寫的dll檔案ASP.NET網頁C#
- C#讀取Rss功能函式C#函式
- C#中DataGrid匯出Excel檔案C#Excel
- 如何讓sqlplus spool輸出的檔案成excel檔案SQLExcel
- matlab輸出資料為excel檔案MatlabExcel
- R語言:資料輸出至檔案R語言
- jaxb輸出xml檔案的中文問題?XML
- 超棒的檔案傳輸工具:SecureFX mac版Mac
- C++中的檔案輸入/輸出(5):二進位制檔案的處理 (轉)C++
- C++中的檔案輸入/輸出(4):檢測輸入/輸出的狀態標誌 (轉)C++
- ASP.NET(C#) MOSS站點下 上傳大檔案ASP.NETC#
- Yii2 輸出檔案下載響應