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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 09:01
    Fri, Jun 5, 2026
    Angular 22: The Evolution of Modern Angular
  • 09:42
    Thu, Jun 4, 2026
    Visual Studio 2026, 6 Months Later
  • 02:07
    Thu, Jun 4, 2026
    From Classic WinForms to Telerik in Minutes: Meet the AI-Powered Converter
  • 08:16
    Wed, Jun 3, 2026
    Google I/O 2026 for Developers: Moving from AI to the Agentic Era
  • 01:34
    Wed, Jun 3, 2026
    Advanced Form Validation in Blazor 10
  • 09:18
    Tue, Jun 2, 2026
    Create and Publish an NPM Package Automatically
  • 04:28
    Tue, Jun 2, 2026
    5 Heart Animations Using .NET MAUI
  • 02:31
    Mon, Jun 1, 2026
    Telerik and Kendo Meet WebMCP: Turning Your Telerik & Kendo UI Apps into Agent-Ready Workspaces
  • 02:47
    Thu, May 28, 2026
    How a 6-Person Team Shipped an AI-First Platform with KendoReact
  • 01:17
    Thu, May 28, 2026
    Design Principles Unpacked, No. 5: Contrast
  • 08:25
    Wed, May 27, 2026
    Telerik and Kendo UI 2026 Q2 Release Is Here: Context‑Aware AI Where You Build
  • 02:04
    Wed, May 27, 2026
    Querying Reliable AI Resources with Telerik Agent Tools API
  • 07:41
    Tue, May 26, 2026
    From DevUI to Observability: Evolving the Agent Dev Loop in Microsoft Agent Framework
  • 01:50
    Tue, May 26, 2026
    Share Functionality in Your .NET MAUI Apps
  • 02:35
    Thu, May 21, 2026
    Deploying Containerized NestJS Applications on GCP Using Cloud Run
    

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