How reliable is this method? I'm currently using it and it pulls in my feed fine, but if my blog were to go down or offline for some reason the whole page would error out. Is there any way to fix this? Or just give an error message saying "No feeds found."?
<asp:DataList ID="dataNews" runat="server" DataSourceID="xmlSource" >
<ItemTemplate>
<a href="<%# XPath("link") %>"><%# XPath("title") %></a><br />
<%# XPath("description").ToString().Substring(0,100) %>...
</ItemTemplate>
</asp:DataList>
<asp:XmlDataSource ID="xmlSource" runat="server" DataFile="http://blogurl.com/feed" XPath="rss/channel/item[position()<4]" EnableCaching="false" />