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

Live XML

Data streamed live from http://feeds.feedburner.com/Telerik
  • 03:10
    Fri, May 9, 2025
    Is Nudgetech the Future of Digital Collaboration?
  • 01:30
    Thu, May 8, 2025
    The Promise of Model Context Protocol
  • 10:42
    Thu, May 8, 2025
    Coding Azure 12: Configuring an Azure Key Vault and Adding Secrets
  • 02:55
    Wed, May 7, 2025
    Discovering Multiple Ways to Create Popups in .NET MAUI
  • 11:20
    Wed, May 7, 2025
    Theme UI Frameworks in Angular Part 1: How to Theme Your Component with Sass
  • 02:05
    Tue, May 6, 2025
    How to Capture User Input Using Blazor Forms
  • 10:20
    Tue, May 6, 2025
    Your Component Library Isn’t a Design System (But it Could Be)
  • 03:28
    Mon, May 5, 2025
    Sands of MAUI: Issue #185
  • 11:10
    Mon, May 5, 2025
    Vue Basics: Testing with Vitest
  • 01:40
    Fri, May 2, 2025
    A Deep Dive into the Payment Request API
  • 02:10
    Thu, May 1, 2025
    5 Features of Fiddler Everywhere You May Not Know About
  • 12:01
    Thu, May 1, 2025
    Just Announced: Progress Telerik & Kendo UI 2025 Q2 Release Webinars June 2, 4 and 6
  • 03:12
    Wed, Apr 30, 2025
    Interactive UI Elements—Exploring KendoReact Button Component Ecosystem
  • 12:14
    Wed, Apr 30, 2025
    Check Out the DrawingView in .NET MAUI
  • 02:15
    Tue, Apr 29, 2025
    The Hidden Costs of Inaccessible Apps for Enterprises and How to Avoid Them
    

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

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