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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 10:12
    Thu, Oct 30, 2025
    Rate Limiting in NestJS Using Throttler
  • 12:20
    Thu, Oct 30, 2025
    Crypto Financial Charts in .NET MAUI Apps
  • 03:04
    Wed, Oct 29, 2025
    Clean Code Using Smart and Dumb Components in Angular
  • 11:51
    Wed, Oct 29, 2025
    Dealing with Impostor Syndrome as a Web Designer or Dev
  • 03:38
    Tue, Oct 28, 2025
    Coding Azure 20: Creating a Backend Processor for Reading an Azure Storage Queue
  • 05:08
    Mon, Oct 27, 2025
    Top 5 Features of Telerik UI for Blazor Grid for Developers
  • 05:00
    Mon, Oct 27, 2025
    AI Image Transformations in Modern Next.js Applications
  • 03:05
    Fri, Oct 24, 2025
    Creating a T-SQL Query Generator Using Microsoft.Extensions.AI
  • 02:08
    Thu, Oct 23, 2025
    Boost Your Site Speed with Speculation Rules API: A Guide to Prerendering and Prefetching
  • 11:42
    Thu, Oct 23, 2025
    Rich Domains: How to Use DDD to Create More Sustainable Systems
  • 03:14
    Wed, Oct 22, 2025
    Blazor vs. JavaScript: Is Blazor the Right Choice for Your Next Project?
  • 11:04
    Wed, Oct 22, 2025
    Array Buffers in JavaScript
  • 03:06
    Tue, Oct 21, 2025
    .NET Aspire 6: Deployment Using Azure Container Apps
  • 11:52
    Tue, Oct 21, 2025
    Out of Control: A Design Guide for Alarm Management
  • 05:13
    Mon, Oct 20, 2025
    .NET MAUI Masked Entry: Secure Input for Credit Cards, PINs, Account Numbers
    

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