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:07
    Fri, Jan 9, 2026
    Simplifying JavaScript Prototypes in Constructor Invocation with Simple Words and Diagrams
  • 07:41
    Thu, Jan 8, 2026
    Building ChatGPT Apps with React Components: Introducing KendoReact + Apps SDK
  • 05:58
    Wed, Jan 7, 2026
    Exploring Marshal Methods in .NET MAUI
  • 05:50
    Wed, Jan 7, 2026
    Progress Agentic RAG: Tuning How We Find and Search for Content
  • 06:16
    Tue, Jan 6, 2026
    Blazor Basics: Should You Migrate to .NET 10?
  • 02:42
    Mon, Jan 5, 2026
    React Basics: Thinking in React
  • 02:34
    Fri, Jan 2, 2026
    An Introductory Walk-through of the Progress Agentic RAG Dashboard
  • 01:30
    Wed, Dec 31, 2025
    What’s New with APIs in .NET 10: Taking a Look at Real Improvements
  • 03:21
    Tue, Dec 30, 2025
    .NET 10 on iOS: Updates and Notes for .NET MAUI Developers
  • 01:41
    Tue, Dec 30, 2025
    Caching with TanStack Query
  • 03:02
    Mon, Dec 29, 2025
    Data Fetching in Modern Angular
  • 02:45
    Fri, Dec 26, 2025
    An Introduction to Zustand
  • 06:13
    Tue, Dec 23, 2025
    Exploring the Blazor Chat Component
  • 04:27
    Tue, Dec 23, 2025
    What Are RAG Embeddings?
  • 06:21
    Mon, Dec 22, 2025
    What’s New in .NET 10 for ASP.NET Core
    

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