I want to display RSS FEED of other website in my site made in ASP.NET. what should i do?
<asp:DataList ID="DataList1" runat="server" DataSourceID="XmlDataSource1">
<ItemTemplate>
Title: <a href="<%# XPath("link") %>"><%# XPath("title") %></a><br />
Pulish Date: <%# XPath("pubDate") %><br />
Description: <%# XPath("description") %>
<hr />
</ItemTemplate>
</asp:DataList>
<asp:XmlDataSource ID="XmlDataSource1" Runat="server"
DataFile="http://z.about.com/6/g/electrical/b/rss2.xml"
XPath="rss/channel/item">
</asp:XmlDataSource>