Click here to Skip to main content
15,894,460 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to remove the first line of a Data List that are binding as a RSS Feed, that is its first heading.
Rss Feed is like this
RSS-Feed - Zoll im Fokus
Hier erhalten Sie aktuelle Informationen über Pressemitteilungen, Erfolge des Zoll Ski Teams, Stellenangebote sowie Nachrichten des Zollmuseums.
Stellenangebot
Die Generalzolldirektion sucht eine Sachbearbeiterin oder einen Sachbearbeiter für das Service-Center Köln im Bereich Reisekostenabrechnung.



I want to remove "
RSS-Feed - Zoll im Fokus
" only

Is anybody help me?? how to do it??

What I have tried:

<asp:DataList ID="dlHeadZoll" runat="server"
                Style="width: 100%; height: 100%; margin-top: -100px;"
                               onitemdatabound="dlHeadZoll_ItemDataBound">
                               <ItemTemplate>
                                   <a href="<%# XPath("link") %>" target="_blank" style="color: Blue; font-weight: bold;">
                                       <%# XPath("title") %></a><br />
                                   <%# XPath("description") %>
                               </ItemTemplate>
                           </asp:DataList>
Posted
Updated 17-Aug-17 18:59pm

1 solution

sorry guys.. got the result by myself.. only comment
<%# XPath("title") %>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900