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

Live XML

  • 02:04
    Fri, Sep 19, 2025
    How to Build Your First LLM Application Using LangChain and TypeScript
  • 01:07
    Thu, Sep 18, 2025
    Coding Azure 17: The Power of Asynchronous Applications
  • 03:34
    Wed, Sep 17, 2025
    Design, Code, Comply: Accessibility in Workforce Learning
  • 12:51
    Wed, Sep 17, 2025
    .NET 10 Release Candidate 1 Builds on Early Promise Seen in Preview Releases
  • 03:04
    Tue, Sep 16, 2025
    .NET Aspire 5: Orchestration and Service Discovery
  • 11:55
    Tue, Sep 16, 2025
    Task Automation in Next.js Using CopilotKit
  • 02:40
    Mon, Sep 15, 2025
    Vue Basics: Mastering the Vue Lifecycle Hooks
  • 12:04
    Mon, Sep 15, 2025
    Recap: What’s New in .NET MAUI for .NET 10
  • 04:50
    Fri, Sep 12, 2025
    You’re Invited! Join Progress & Microsoft for a Free VS Code Dev Days Event!
  • 02:11
    Fri, Sep 12, 2025
    Preparing for an AI-powered Holiday Shopping Season
  • 12:20
    Thu, Sep 11, 2025
    Innovation Starts with Standards
  • 05:06
    Wed, Sep 10, 2025
    Build Without Boundaries: Join the KendoReact Free Components Challenge!
  • 12:09
    Wed, Sep 10, 2025
    Getting Started with Kendo UI for Angular Grid
  • 03:04
    Tue, Sep 9, 2025
    Handling Null Values in ASP.NET Core
  • 11:54
    Tue, Sep 9, 2025
    React Basics: How to Use React useCallback Effectively
    

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

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