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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 01:51
    Fri, Aug 28, 2026
    What Are the Biggest Time Wasters for Web Designers & Developers?
  • 08:09
    Thu, Aug 27, 2026
    IA Prompting: Reframe and Relate
  • 08:33
    Wed, Aug 26, 2026
    AI UX Patterns to Show Meaningful User Benefit
  • 06:36
    Wed, Aug 26, 2026
    Learning LangGraph with TypeScript—Part 1: Understanding Nodes, State and Edges
  • 03:19
    Tue, Aug 25, 2026
    Understanding the Modern AI Stack
  • 12:59
    Tue, Aug 25, 2026
    When to Use ListView vs. DataGrid in Real-World Projects
  • 03:39
    Mon, Aug 24, 2026
    DataGrids Are For... Financial Analysts
  • 03:23
    Mon, Aug 24, 2026
    Skeleton in .NET MAUI: What It Is and How to Use It
  • 05:09
    Thu, Aug 20, 2026
    Create a Kendo UI for Angular Dinner Picker
  • 04:31
    Thu, Aug 20, 2026
    AI UX Patterns for User Transparency
  • 05:28
    Wed, Aug 19, 2026
    Build, Automate and Observe: What You Can Do with Telerik, Kendo UI and AI Engineering This August
  • 04:22
    Wed, Aug 19, 2026
    What a Useful AI Trace Should Actually Contain (And How to Build One)
  • 05:08
    Tue, Aug 18, 2026
    Telerik UI for Blazor vs. Syncfusion Blazor: Which Is Better for Long-Term Application Development?
  • 03:44
    Tue, Aug 18, 2026
    The New Full-Stack Developer: Building Applications for Humans, AI Assistants and Autonomous Agents
  • 04:34
    Mon, Aug 17, 2026
    Useful JavaScript Additions in ECMAScript 2026
    

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