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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 02:13
    Wed, Nov 26, 2025
    How to Store Files on a User’s Device Using OPFS (Origin Private File System)
  • 04:04
    Tue, Nov 25, 2025
    Replicating a Christmas UI in .NET MAUI
  • 12:07
    Tue, Nov 25, 2025
    Adding Intelligence to Your Blazor Apps Using Telerik Smart Components
  • 10:57
    Mon, Nov 24, 2025
    Angular 21: My Favorite New Features, a Quick Demo and a Look at What’s Next
  • 04:04
    Mon, Nov 24, 2025
    Securing Apps with the Telerik UI for ASP.NET Core OTP Control
  • 01:03
    Mon, Nov 24, 2025
    The KendoReact MCP Server with Cursor
  • 10:09
    Thu, Nov 20, 2025
    Practical Introduction to Async Generators in JavaScript
  • 05:01
    Thu, Nov 20, 2025
    Turn Prompts into Pages: Telerik Agentic UI Generator
  • 04:42
    Wed, Nov 19, 2025
    The AI-Forward Telerik & Kendo UI 2025 Q4 Release Is Here
  • 06:47
    Tue, Nov 18, 2025
    Real-Time Data Updates with the Telerik UI for .NET MAUI Grid
  • 02:16
    Tue, Nov 18, 2025
    Angular Signal Forms vs. Reactive Forms
  • 10:08
    Mon, Nov 17, 2025
    Blazor Basics: Building Drag-and-Drop Functionality in Blazor Applications
  • 04:37
    Mon, Nov 17, 2025
    React Basics: Interactivity and State
  • 09:10
    Thu, Nov 13, 2025
    .NET 10 Has Arrived—Here’s What’s Changed for Blazor
  • 04:03
    Wed, Nov 12, 2025
    Day-Zero Support for .NET 10 Across Progress Telerik
    

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