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:43
    Thu, Apr 25, 2024
    Bored? How to Stay Engaged with QA Testing
  • 07:34
    Thu, Apr 25, 2024
    WPF or .NET MAUI—How to Choose
  • 03:03
    Wed, Apr 24, 2024
    First-Class Integration of Web Report Designer and Viewer
  • 07:54
    Wed, Apr 24, 2024
    Everything You Need to Know About Server Components in KendoReact
  • 02:41
    Tue, Apr 23, 2024
    Just Announced: Progress Telerik & Kendo UI 2024 Q2 Release Webinars June 3, 5 and 7
  • 08:15
    Tue, Apr 23, 2024
    How Does Angular Compare to Vue?
  • 03:03
    Mon, Apr 22, 2024
    Sands of MAUI: Issue #142
  • 08:02
    Mon, Apr 22, 2024
    Design Engineers—Filling the Frontend Gap
  • 08:10
    Fri, Apr 19, 2024
    Using GitHub and NextAuth.js for Single Sign-on in Next.js
  • 02:32
    Thu, Apr 18, 2024
    How to Diagnose and Repair a Slow-Loading Website
  • 07:41
    Thu, Apr 18, 2024
    ASP.NET Core Basics: Getting Started with LINQ
  • 02:53
    Wed, Apr 17, 2024
    Elevating UX in Reports: Explore the Enhancements in the Web Report Designer
  • 08:11
    Wed, Apr 17, 2024
    Apple Deployment/Distribution for .NET MAUI Apps
  • 03:04
    Tue, Apr 16, 2024
    Blazor Basics: Handling Images Dynamically
  • 08:27
    Tue, Apr 16, 2024
    How to Build a Stepper Form in KendoReact
    

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