如何使用asp.net 实现rss???
C# code better

解决方案 »

  1.   

    留个MAIL,我发一个C#的给你,或者找点关于RSS是资料看看,其实很简单的,无非就是XML加RSS标记
      

  2.   

    [email protected]
    真是太感谢了!!!!!!!!!!!!!!!!!!!!!!!!!1
      

  3.   

    zahota(谁找我?)
    能否也发份给我
    [email protected]
      

  4.   

    我也想要一份
    [email protected]
    谢谢!!!!!!!!!!!
      

  5.   

    Thank You zahota(谁找我?)
    [email protected]
      

  6.   

    烦请也发给我一份 [email protected]
      

  7.   

    我也要一个哟[email protected]谢谢
      

  8.   

    如果有的话
    发给我一份哦
    [email protected]
      

  9.   

    有的话,也给我发份,正在学这个呢!
    谢谢啦!
    [email protected]
      

  10.   

    谢谢。有的话也给小弟一份~
    [email protected]
      

  11.   

    有的话,也给我发份,正在学这个呢!
    谢谢啦!
    [email protected]
      

  12.   

    http://chjl.cn/article/Read.aspx?ArticleID=106
      

  13.   

    [email protected]
    还有我,谢
      

  14.   

    http://www.i2key.com/TechDoc/Index.aspx?grads=0&Curpage=1&SearchKey=rss&CatID=
      

  15.   

    [email protected] 也给我一份吧,大家一起努力.
      

  16.   

    http://community.csdn.net/Expert/topic/4167/4167554.xml?temp=.5617792
      

  17.   

    这个东东好象也不难的吧,无非是换种绑定的方法,以前绑在table里,现在绑xml文件里的区别
      

  18.   

    <%@ Page language="c#" Codebehind="Rss.aspx.cs" AutoEventWireup="false" Inherits="Comment.Rss" %><?xml version="1.0" encoding="gb2312" standalone="yes"?>
    <!--注释-->
    <rss version="0.92">
      <channel>
        <title></title>
        <link></link>
        <description><asp:Literal ID="Literal1" Runat="server"></asp:Literal></description>
        <language>zh-cn</language>
        <asp:Repeater id="Repeater1" runat="server">
    <ItemTemplate>
    <item>
    <title><%#DataBinder.Eval(Container.DataItem, "content")%></title>
    <description><![CDATA[<%# Comments.GetName((Comment)Container.DataItem)%>]]></description>
    <pubDate><%#DataBinder.Eval(Container.DataItem, "createtime")%></pubDate>
    <link></link>
    </item>
    </ItemTemplate>
        </asp:Repeater>
      </channel>
    </rss>前台代码如上,后台绑定就行了