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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 06:49
    Tue, Sep 15, 2026
    Beyond Frontend and Backend: The Rise of the Agent Layer
  • 03:31
    Tue, Sep 15, 2026
    The Agent Observability Gap: Why AI Agents Need More Than Traditional Monitoring
  • 01:39
    Tue, Sep 15, 2026
    DataGrids Are For... Managers and Administrators
  • 09:47
    Mon, Sep 14, 2026
    Top 10 Best React UI Libraries 2026 (AI + DX Edition)
  • 09:31
    Mon, Sep 14, 2026
    Behind Every Great Application Is a Developer Who Cares
  • 01:56
    Fri, Sep 11, 2026
    Add Observability to a Genkit AI Agent with Progress Agent Engineering
  • 02:36
    Thu, Sep 10, 2026
    AI Workflow Automation for Software Development: How to Hand an Agent a Whole Job
  • 05:20
    Wed, Sep 9, 2026
    Decision Guide for Angular State Management: Signals, Services, SignalStore or NgRx?
  • 02:31
    Wed, Sep 9, 2026
    Telerik Support by the Numbers: Response Times, Resolution Rates and Technical Expertise
  • 07:54
    Tue, Sep 8, 2026
    DataGrids Are For... Legal Professionals
  • 05:19
    Tue, Sep 8, 2026
    Prompt Engineering Is Not Enough
  • 01:06
    Tue, Sep 8, 2026
    Why I Finally Switched from Fiddler Classic to Fiddler Everywhere
  • 02:30
    Fri, Sep 4, 2026
    Different Types of Audio to Improve Your Mood and Mental Health at Work
  • 07:27
    Thu, Sep 3, 2026
    Coding Agents vs. Workflows vs. Orchestration vs. Platforms: How to Architect the AI Dev Stack
  • 08:23
    Wed, Sep 2, 2026
    AI Crash Course: Retrieval Augmented Generation (RAG)
    

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