ASP.NET站点RSS功能实现方法(2)_.Net教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:asp.net使用存储过程实现用户登录
cs代码如下 stringUserName=txtUserName.Text.ToString(); stringPassWord=txtPassWord.Text.ToString(); PassWord=FormsAuthentication.HashPasswordForStoringInConfigFile(PassWord,md5).ToLower().Substring(8,16); SqlParameter[]par=newSqlParameter


//循环读取RSS中的每个ITEM的内容
private string getRss(IList<Model.Info> listInfo)
  {
    StringBuilder strRss = new StringBuilder();
    foreach (Model.Info var in listInfo)
    {
      string nickname = DAL.Users.instance.GetModelBasic(var.Author).NickName;
      string content = Function.ReplaceHtml(var.Content);
      content = Function.ReplaceXml(content);
      content = (content.Length > 300) ? content.Substring(0, 300) + "" : content;
      string link = Function.getConfig("MyUrl") + nickname + "/blog/item/" + var.id;
      strRss.Append("<item>");
      strRss.Append("<title>" + Function.ReplaceXml(var.Title) + "</title>");
      strRss.Append("<author>" + nickname + "</author>");
      strRss.Append("<description><![CDATA[" + content + "<p><a href=’" + link + "’>查看全文</a>" + "]]></description>");
      strRss.Append("<pubDate>" + var.Adddate.ToString() + "</pubDate>");
      strRss.Append("<link>" + link + "/</link>");
      strRss.Append("</item>");
    }
    return strRss.ToString();
  }

XML中的特殊字符的过滤(否则生成的XML文件会出错):
public static string ReplaceXml(string msg)
  {
    if (msg != "" && msg != null)
    {
      msg = msg.Replace("&", "%26");
      msg = msg.Replace(">", "&gt;");
      msg = msg.Replace("<", "&lt;");
      msg = msg.Replace(""", "&quot;");
      msg = msg.Replace("’", "&apos;");
    }
    return msg;
  }

要注意的是,如果你的RSS输出的链接中有中文字符,如: cnblogs.com/你好/rss.aspx,
那么,最好能使用Server.UrlEncode("你好"),也就是编码之后才能使用抓虾等来订阅。

分享:md5加密代码示例
1、asp.net的。 在 asp.net 中有自带的类: System.Web.Security.HashPasswordForStoringInConfigFile() stringpwd=TextBox1.Text; pwd=FormsAuthentication.HashPasswordForStoringInConfigFile(pwd,md5).ToLower().Substring(8,16); this.Label1.Text=pwd

共2页上一页12下一页
来源:模板无忧//所属分类:.Net教程/更新时间:2012-06-13
相关.Net教程