Hi all, I need help from you.
How show my RSS feed (with a Webslice, that I would add subsequently) into my webform ?
I know, i can use simply :
<asp:Xml ID="Xml1" DataSource="RSS.xml" TransformSource="RSS.xslt" runat="server" />
but I would like to "customer" can make a sorting and/or filter by category for example... and add paging if possible... somewhat like a DataGrid...
I have heard XPath? But how does this DisplayRotation? I've tested it in this form:
<asp:XmlDataSource runat="server" ID="XmlDataSource1" XPath="rss/channel" DataFile="~/News/RSS.fr.xml">
</asp:XmlDataSource>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="XmlDataSource1">
<ItemTemplate>
<h3>
News</h3>
<table style="width: 100%; text-align:left;">
<tr>
<td>
<img alt="image" width="100px" src="<%#XPath("item/logo")%>" />
</td>
<td>
<h4>
<%#XPath("item/title")%></h4>
<div>
<%#XPath("item/description")%>
</div>
</td>
</tr>
</table>
</ItemTemplate>
</asp:Repeater>
but in this way, I have come to view only the 1st item.... and others? And filters? And paging? In short, is not quite what I was looking for...
If someone can help me. Thank you in advance.
Cordialy, André Talavera
Cdt, Cresus_
i'm Cresus.