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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 02:12
    Thu, Jul 17, 2025
    Creating a Landing Page in Blazor
  • 03:03
    Wed, Jul 16, 2025
    .NET MAUI Barcode & QR Code: For Inventory, Orders & Loyalty
  • 10:41
    Wed, Jul 16, 2025
    You Can’t Design the Experience
  • 03:04
    Tue, Jul 15, 2025
    .NET Aspire 2: The Developer Dashboard
  • 12:05
    Tue, Jul 15, 2025
    Understanding Parallel Programming in ASP.NET Core
  • 12:55
    Mon, Jul 14, 2025
    Learning NestJS Part 1: Getting Started
  • 11:16
    Mon, Jul 14, 2025
    Sands of MAUI: Issue #193
  • 03:04
    Fri, Jul 11, 2025
    Navigating Turmoil and Chaos at Work Like a Pro
  • 01:13
    Thu, Jul 10, 2025
    Using RichTextEditor in Your .NET MAUI Apps
  • 01:05
    Wed, Jul 9, 2025
    5 Open-Source Projects to Boost Your Productivity in Blazor
  • 03:16
    Tue, Jul 8, 2025
    Functional Programming in C#—Exploring Advanced Topics
  • 12:17
    Tue, Jul 8, 2025
    How to Use Angular CDK Layout and Flex for Responsive Websites
  • 04:38
    Mon, Jul 7, 2025
    Sands of MAUI: Issue #192
  • 01:11
    Thu, Jul 3, 2025
    Integrating Stripe in Blazor Applications
  • 10:10
    Thu, Jul 3, 2025
    How to Use Ocelot as an API Gateway in ASP.NET Core
    

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