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:33
    Fri, Jun 26, 2026
    REST to tRPC Migration in NestJS Monorepos
  • 03:28
    Thu, Jun 25, 2026
    Design Systems, Tokens and AI
  • 09:34
    Wed, Jun 24, 2026
    AI Is the Power Loom. And You? Are You the Weaver?
  • 07:22
    Wed, Jun 24, 2026
    Blazor Basics: Implementing a Loading Indicator for Asynchronous Components
  • 07:43
    Tue, Jun 23, 2026
    Handling Mutations with TanStack Query for Vue
  • 05:10
    Tue, Jun 23, 2026
    Getting Started with NLP Using Hugging Face Transformers in Python
  • 05:00
    Mon, Jun 22, 2026
    Replicating a Ticket Screen in .NET MAUI
  • 04:04
    Mon, Jun 22, 2026
    Stop Running Your Backlog Like an Emergency Room
  • 05:23
    Thu, Jun 18, 2026
    Nuxt 4 Server Routes vs. Fetch Composables
  • 02:54
    Thu, Jun 18, 2026
    When Status OK Is Still a Failure: A Taxonomy of Silent AI Agent Breakage and How to Detect It
  • 08:58
    Wed, Jun 17, 2026
    KendoReact vs. OSS: What You Can Actually Get for Free (and What You Can’t)
  • 08:17
    Wed, Jun 17, 2026
    Creating Localized .NET MAUI Applications
  • 04:26
    Mon, Jun 15, 2026
    Building Component-Aware Production UIs with Angular and Kendo UI MCP
  • 01:30
    Mon, Jun 15, 2026
    Telerik UI for Blazor Meets A2UI: The Next Step Toward Dynamic UI Generation
  • 07:09
    Thu, Jun 11, 2026
    Exploring the SLNX Solution File Format
    

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.
  • DefaultVB.aspx
  • DefaultVB.aspx.vb
  • styles.css
<%@ Page AutoEventWireup="true" Inherits="Telerik.Web.Examples.Rotator.Functionality.LiveXML.DefaultVB"CodeFile="DefaultVB.aspx.vb" Language="vb"  %>

<!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/<%# GetDayOfWeek(XPath("be:published", NamespaceManager).ToString()) %>.png');">
                        <div class="dateTime">
                            <div class="time">
                                <%# (GetTimeOnly(XPath("be:published", NamespaceManager).ToString())) %>
                            </div>
                            <div class="date">
                                <%# (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