I want to display RSS FEED of other website in my site made in ASP.NET. what should i do?
Add “/feed/” to the end of the website URL. and when we enter this in a browser it shows us an RSS feed.
Go to the website, list, or library where you want to receive the RSS feed from. . The RSS feed appears in the browser. Right-click the Subscribe to this feed link, and then select Copy Shortcut.
Yes, you can use RSS Feeds on your website. It is absolutely free and effortlessly easy to do so. All you need is an RSS Feed URL and a free RSS Widget powered by Tagembed.
Click the RSS icon in the Address Bar and the browser window will change to display as a series of single-line RSS feeds.
<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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With