Hi,
I just finished a very small module to gather RSS fields from Database and show them in my page.
THIS POST FROM MSDN was really helpful and it is just what I wanted.
I tried a lot to use asp:Repeater and XSLT togather to format my feeds but I found no way to do that. At last I came back to XML control in ASP.NET and did following:
- Made a small parser class to transform my SqlDataReader to XmlDocument object
- Used Xml Control to combine XmlDocument and XSLT to transform the result.