|
Hi
I can't extract the correct link elements out of
http://notebox.ch/blog/atom.xml using the latest rss toolkit.
The code below gives me 3 times the link of the root "feed" element, but I need the uniqe links of the "feed/entry" elements.
<asp:DataList
ID="DataList1"
runat="server"
DataSourceID="RssDataSource1">
<ItemTemplate>
Link:
<asp:HyperLink
ID="titleLabel"
runat="server"
NavigateUrl='<%# Eval("link") %>'
Text='<%# Eval("link") %>'
/>
<br
/>
<br
/>
</ItemTemplate>
</asp:DataList>
<cc1:RssDataSource
ID="RssDataSource1"
runat="server"
MaxItems="3"
Url="http://notebox.ch/blog/atom.xml">
</cc1:RssDataSource>
|