Dhanish 0 Newbie Poster

hi all, i want to extract data from an xml rss feeds and store them in a database. But the problem is that I can't get to display the appropriate information from the xml. I've tried several different codes found on the web but none which suits the objective that I want to achieve

<asp:Repeater ID="Repeater1" runat="server" DataSourceID="XmlDataSource1">
                    <ItemTemplate>
                        <%# XPath("title")%> <br />
                        <%# XPath("link")%> <br />
                        <%# XPath("guid")%> <br />
                        <%# XPath("pubDate")%> <br />
                        <%# XPath("description")%> <br />
                        <%# XPath("category")%> <br />
                    </ItemTemplate>
                </asp:Repeater>

                <asp:XmlDataSource ID="XmlDataSource1" 
                                   runat="server" 
                                   DataFile="http://themoneyconverter.com/rss-feed/GBP/rss.xml">
                </asp:XmlDataSource>

any help would be much appreciated

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.