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

Live XML

  • 04:30
    Thu, May 29, 2025
    Angular 20—Let the Magic Flow
  • 05:11
    Wed, May 28, 2025
    Until June 28, Anybody Gets Full Access to the New AI Coding Assistants. Here’s How.
  • 04:01
    Wed, May 28, 2025
    Announcing Telerik & Kendo UI Coding Assistants
  • 02:43
    Wed, May 28, 2025
    The AI-Powered Telerik and Kendo UI 2025 Q2 Release Is Here—See What’s New!
  • 07:20
    Tue, May 27, 2025
    Tools to Build With: Google I/O 2025
  • 02:19
    Tue, May 27, 2025
    What Microsoft Announced at Build 2025
  • 01:00
    Tue, May 27, 2025
    Build a Blog with Angular in Under 30 Minutes Using Analog
  • 09:33
    Tue, May 27, 2025
    How Components Speed Up .NET MAUI App Development
  • 02:15
    Thu, May 22, 2025
    Taming the Dragon: A Toolbar’s Tale
  • 11:20
    Thu, May 22, 2025
    Coding Azure 13: Securing Access to Your Key Vault to Your Application
  • 02:06
    Wed, May 21, 2025
    Theme UI Frameworks in Angular Part 3: Theming with Kendo UI and ThemeBuilder
  • 10:24
    Wed, May 21, 2025
    How to Migrate Your WPF Components to .NET MAUI
  • 03:04
    Tue, May 20, 2025
    Vector Search with EF 9
  • 12:11
    Tue, May 20, 2025
    Building Interactive Dialogs in KendoReact
  • 03:26
    Mon, May 19, 2025
    Sands of MAUI: Issue #187
    

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