こんにちは、最新の RSS ニュース フィードを取得できるように、定期的に jquery または javascript を使用してクライアント側でデータリストをリロードしたいと思います。これが私のコードです。
<asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="http://www.example.com/category/test/feed/"
XPath="rss/channel/item"></asp:XmlDataSource>
<asp:DataList ID="dlRss" runat="server" DataSourceID="XmlDataSource1">
<ItemTemplate>
<label style="color: #222222; float: left; font-size: 16px; margin-top: 5px; width: 190px;">
<%# XPath("title")%></label>
<label style="color: #444444; display: inline-block; font-size: 11px; margin-bottom: 5px;
width: 190px;">
<%# Convert.ToDateTime(XPath("pubDate")).ToShortDateString() + " @" + Convert.ToDateTime(XPath("pubDate")).ToShortTimeString()%></label>
<label style="color: #444444; display: inline-block; font-size: 13px; width: 190px;">
<%#XPath("description").ToString().Length <= 200 ? XPath("description") : XPath("description").ToString().Substring(0,200) + "...<a href='" + XPath("link").ToString() + "' target='_blank'>more</a>"%></label>
<br />
</ItemTemplate>
</asp:DataList>