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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 02:49
    Thu, Aug 6, 2026
    AI UX Patterns for User Clarity
  • 01:24
    Wed, Aug 5, 2026
    Creating a Production-Ready CRUD Application in ASP.NET Core
  • 03:48
    Tue, Aug 4, 2026
    Simplify Hierarchical Selection in Blazor with the Telerik DropDownTree
  • 12:52
    Tue, Aug 4, 2026
    Query Keys: Patterns for Scaling TanStack Query
  • 03:33
    Mon, Aug 3, 2026
    4 Rating Card UI Ideas in .NET MAUI
  • 12:17
    Mon, Aug 3, 2026
    Biometric Authentication in Angular Using Auth0
  • 04:45
    Thu, Jul 30, 2026
    AI UX Patterns for User Trust
  • 07:43
    Wed, Jul 29, 2026
    AI Prompt Cookbook for React Developers
  • 02:29
    Tue, Jul 28, 2026
    Using AI to Build a Blazor App 4: Architect and Build the First Feature
  • 12:57
    Tue, Jul 28, 2026
    What Enterprise Teams Actually Look for in an Angular UI Library
  • 08:04
    Mon, Jul 27, 2026
    The Best Time to Welcome Jeff Fritz Back Is When Developers Need Him Most
  • 03:52
    Mon, Jul 27, 2026
    Top Common Handlers in .NET MAUI
  • 03:57
    Fri, Jul 24, 2026
    Blazor Basics: Handling Loading, Empty and Error States in Blazor
  • 04:52
    Thu, Jul 23, 2026
    The UX Challenge of Designing AI-Powered User Interfaces
  • 04:39
    Wed, Jul 22, 2026
    Pagination and Infinite Queries with TanStack Query in Vue
    

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