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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 10:34
    Thu, Mar 12, 2026
    AI Crash Course: Hallucinations
  • 07:31
    Wed, Mar 11, 2026
    How to Organize Minimal APIs
  • 08:09
    Tue, Mar 10, 2026
    Guide to Creating an Angular-based Micro-frontend Application Using Native Federation
  • 04:30
    Tue, Mar 10, 2026
    5 UX Tips for .NET MAUI Developers
  • 05:57
    Fri, Mar 6, 2026
    How to Build a NestJS AI Chatbot with Google Gemini
  • 06:08
    Thu, Mar 5, 2026
    Understanding the Architecture of a Prompt
  • 05:32
    Thu, Mar 5, 2026
    Coding Azure 22: Adding Configuration Information to an App Configuration Service
  • 09:25
    Wed, Mar 4, 2026
    Spreadsheet Analysis with Telerik Document Processing Libraries Agentic Tools
  • 04:17
    Tue, Mar 3, 2026
    Customizing the New ReconnectModal Component in Blazor 10
  • 04:00
    Tue, Mar 3, 2026
    An Introduction to TanStack DB: A Reactive Data Layer for Modern Web Applications
  • 06:21
    Mon, Mar 2, 2026
    .NET 10: Secondary Toolbar Items for iOS and macOS in .NET MAUI
  • 06:06
    Mon, Mar 2, 2026
    Singleton or Not? Understanding Angular Services the Right Way
  • 10:12
    Thu, Feb 26, 2026
    Design Principles Unpacked, No. 1: Alignment
  • 10:01
    Thu, Feb 26, 2026
    How to Identify Technologies Worth Exploring
  • 12:24
    Thu, Feb 26, 2026
    AI Crash Course: Tokens, Prediction and Temperature
    

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