New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 03:11
    Wed, Aug 13, 2025
    .NET Aspire 3: Service Defaults
  • 11:09
    Wed, Aug 13, 2025
    Integrating Telerik Reports with Your ASP.NET Webpage
  • 03:07
    Tue, Aug 12, 2025
    Building Modern and Scalable Applications with TanStack Router in React
  • 11:19
    Tue, Aug 12, 2025
    Getting to Know the Blazor TreeView Control
  • 04:02
    Mon, Aug 11, 2025
    Sands of MAUI: Issue: #196
  • 11:39
    Mon, Aug 11, 2025
    How to Think Like a Designer
  • 02:18
    Fri, Aug 8, 2025
    How to Integrate Kafka with NestJS for Event-Driven Microservices
  • 02:10
    Thu, Aug 7, 2025
    Unlocking Data Sharing in Your Nuxt App
  • 10:43
    Thu, Aug 7, 2025
    Async Programming in Python
  • 02:55
    Wed, Aug 6, 2025
    5 Tips for Creating Responsive UIs with Telerik UI for ASP.NET Controls
  • 11:29
    Wed, Aug 6, 2025
    Prompt, Preview, Publish: Styling Telerik UI with AI in ThemeBuilder
  • 03:43
    Tue, Aug 5, 2025
    Getting Started with the Blazor Spreadsheet Control
  • 12:24
    Tue, Aug 5, 2025
    How I’m Using AI (as an AI Skeptic)
  • 04:34
    Mon, Aug 4, 2025
    Enhancing .NET MAUI App Appearance Using Lottie Animations
  • 11:39
    Mon, Aug 4, 2025
    Building React Apps with Bun: A Modern Development Experience
    

RadRotator has support for live XML feeds.

You can make use of this feature very easily - all you need to do is use a XmlDataSource source and set it to the URL of the live feed. Finally, you might need to set the XmlDataSource's XPath span.__group0.This way you could easily deliver public news to your site using your own formatting and styling.
  • DefaultCS.aspx
  • DefaultCS.aspx.cs
  • styles.css
<%@ Page AutoEventWireup="true" Inherits="Telerik.Web.Examples.Rotator.Functionality.LiveXML.DefaultCS"CodeFile="DefaultCS.aspx.cs" Language="C#"  %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-container no-bg">
        <div class="backElement">
            <div class="titleText">
                Data streamed live from <a href="http://feeds.feedburner.com/Telerik">http://feeds.feedburner.com/Telerik</a><br />
            </div>
            <telerik:RadRotator RenderMode="Lightweight" ID="RadRotator1" Skin="Silk" RotatorType="AutomaticAdvance" ScrollDirection="Up"
                ScrollDuration="2000" runat="server" Width="493"
                ItemWidth="493" Height="192" ItemHeight="64" FrameDuration="1" InitialItemIndex="-1"
                CssClass="rotator">
                <ItemTemplate>
                    <div class="itemTemplate" style="background-image: url('images/<%# this.GetDayOfWeek(XPath("be:published", NamespaceManager).ToString()) %>.png');">
                        <div class="dateTime">
                            <div class="time">
                                <%# (this.GetTimeOnly(XPath("be:published", NamespaceManager).ToString())) %>
                            </div>
                            <div class="date">
                                <%# (this.GetDateOnly(XPath("be:published", NamespaceManager).ToString()))%>
                            </div>
                        </div>
                        <div class="title">
                            <span>
                                <%# System.Web.HttpUtility.HtmlEncode(XPath("be:title", NamespaceManager).ToString())%>
                            </span>
                        </div>
                    </div>
                </ItemTemplate>
            </telerik:RadRotator>
            <asp:Label ID="lblMessage" Visible="false" CssClass="message" runat="server" />
        </div>
    </div>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance