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:59
    Fri, Jun 27, 2025
    Adding Audio Effects to Dynamic Websites
  • 10:35
    Thu, Jun 26, 2025
    .NET 10 Previews 4 and 5 Improve Blazor Performance Monitoring and JS Interop
  • 02:04
    Wed, Jun 25, 2025
    Making the Most of ThemeBuilder’s Figma-to-HTML Import
  • 09:51
    Wed, Jun 25, 2025
    Event Sourcing in ASP.NET Core: How to Store Changes as Events
  • 03:44
    Tue, Jun 24, 2025
    .NET Aspire 1: What Is .NET Aspire?
  • 12:40
    Tue, Jun 24, 2025
    Unit Testing in Angular: Modern Testing with Vitest
  • 04:08
    Mon, Jun 23, 2025
    Sands of MAUI: Issue #190
  • 12:05
    Mon, Jun 23, 2025
    SSO Comes to Telerik and Kendo UI: A Simpler, More Secure Way to Access Your Account
  • 03:04
    Fri, Jun 20, 2025
    An Introduction to Firebase Cloud Tasks
  • 03:11
    Wed, Jun 18, 2025
    When (and Why) to Roll Back Features on Apps
  • 11:21
    Wed, Jun 18, 2025
    Coding Azure 15: Storing Certificates in a Key Vault, Retrieve from a Server-Side Application
  • 04:19
    Tue, Jun 17, 2025
    Blazor Basics: Integrating Third-Party APIs in Blazor WebAssembly
  • 11:15
    Tue, Jun 17, 2025
    I Can’t Get No Satisfunction
  • 03:50
    Mon, Jun 16, 2025
    Integrating the Scheduler in Your .NET MAUI Apps
  • 12:11
    Mon, Jun 16, 2025
    An Introduction to Linked Signals in Angular
    

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