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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 06:12
    Thu, Dec 11, 2025
    What Every Developer Should Learn as Soon as Possible in Their Personal Life
  • 03:13
    Thu, Dec 11, 2025
    .NET 10: Quick UI Changes Worth Noticing in .NET MAUI
  • 04:02
    Wed, Dec 10, 2025
    OpenAI Image Generation
  • 12:04
    Wed, Dec 10, 2025
    Write Cleaner Code with C# 14’s Null-Conditional Assignment Operator
  • 04:12
    Tue, Dec 9, 2025
    Building Apps with Angular and GraphQL: From REST to GraphQL Part 2
  • 02:01
    Tue, Dec 9, 2025
    Designing Microservices: An Architectural and Practical Approach
  • 04:02
    Mon, Dec 8, 2025
    Building Blazor Apps with Agents and Telerik UI AI Coding Assistants
  • 03:53
    Mon, Dec 8, 2025
    KendoReact Built-in Icon and SVG Icon Collection
  • 06:22
    Thu, Dec 4, 2025
    Get Instant Answers to Your Technical Questions with the Telerik AI Assistant
  • 03:53
    Thu, Dec 4, 2025
    Extension Properties: C# 14’s Game-Changing Feature for Cleaner Code
  • 03:32
    Wed, Dec 3, 2025
    Build Your First AI App in 30 Minutes with the TypeScript AI SDK and Gemini
  • 02:05
    Wed, Dec 3, 2025
    How to Transition to Cross-Platform Development
  • 02:04
    Tue, Dec 2, 2025
    Angular Signals: The Essentials You Need to Know
  • 02:15
    Mon, Dec 1, 2025
    The KendoReact Prompt Library
  • 02:13
    Wed, Nov 26, 2025
    How to Store Files on a User’s Device Using OPFS (Origin Private File System)
    

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