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:54
    Mon, Oct 13, 2025
    Automating Tasks with Quartz.NET
  • 02:10
    Fri, Oct 10, 2025
    The Web Animation API
  • 01:14
    Thu, Oct 9, 2025
    4 Design Best Practices for Better Contact Forms
  • 03:06
    Wed, Oct 8, 2025
    Vue Basics: State Management in Vue
  • 11:20
    Wed, Oct 8, 2025
    Coding Azure 18: Creating and Securing Azure Storage Queues
  • 03:03
    Tue, Oct 7, 2025
    Docker and Angular Part 2: Environment Variables and Share Docker Images
  • 11:12
    Tue, Oct 7, 2025
    Stop Building Generic Software
  • 07:39
    Mon, Oct 6, 2025
    Designer/Developer Collaboration in the Age of AI
  • 02:05
    Mon, Oct 6, 2025
    Working with the KendoReact Popup Component
  • 10:07
    Mon, Oct 6, 2025
    Blazor Basics: Using Local Storage to Save and Restore Form Input
  • 02:26
    Fri, Oct 3, 2025
    Is Apple’s Liquid Glass the Next Material Design?
  • 02:04
    Thu, Oct 2, 2025
    Setting Up Web Development Environment for Windows
  • 10:56
    Thu, Oct 2, 2025
    Build an LLM Chat App Using LangGraph, OpenAI and Python—Part 2: Understanding SystemMessage
  • 05:06
    Wed, Oct 1, 2025
    Docker and Angular Part 1: How to Dockerize Angular Apps
  • 10:19
    Wed, Oct 1, 2025
    AI Won't Replace Design Engineers, But It Will Change How We Work
    

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