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:35
    Wed, Jul 8, 2026
    Available Now in .NET 11 for .NET MAUI
  • 01:10
    Wed, Jul 8, 2026
    The Importance of Empathy in Automation
  • 03:05
    Tue, Jul 7, 2026
    Using AI to Build a Blazor App 1: Start With the Problem
  • 12:13
    Tue, Jul 7, 2026
    Getting Started with Angular Signal Forms
  • 02:05
    Mon, Jul 6, 2026
    AI Can’t Solve It All: Here’s What 120+ Frontend Developers Say They Still Hate Working On
  • 12:53
    Mon, Jul 6, 2026
    A Developer’s Guide to State Management with Effector
  • 12:24
    Thu, Jul 2, 2026
    3 Tricks to Help You Stop Procrastinating
  • 04:48
    Wed, Jul 1, 2026
    Replicating a Travel App in .NET MAUI
  • 01:19
    Wed, Jul 1, 2026
    How Depending Leads to Independence
  • 08:22
    Tue, Jun 30, 2026
    Nuxt 4 Notes with AppWrite
  • 04:57
    Tue, Jun 30, 2026
    Choosing the Right Telerik UI for Blazor Chart
  • 04:35
    Mon, Jun 29, 2026
    Check Out These Amazing Projects from the Progress x GitNation Hackathon!
  • 01:01
    Mon, Jun 29, 2026
    Best Practices for Exceptions in ASP.NET Core
  • 03:33
    Fri, Jun 26, 2026
    REST to tRPC Migration in NestJS Monorepos
  • 03:28
    Thu, Jun 25, 2026
    Design Systems, Tokens and AI
    

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