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:50
    Fri, Jan 24, 2025
    Building Runtime Agnostic Apps/Packages with JavaScript
  • 03:22
    Thu, Jan 23, 2025
    Using Your Organization’s Theme with Your Telerik and Kendo UI Components
  • 10:13
    Thu, Jan 23, 2025
    Deploying ASP.NET Core Applications with Docker—Part 2
  • 04:13
    Wed, Jan 22, 2025
    Quick and Easy Conversion to PDF with Telerik Document Processing Library
  • 12:47
    Wed, Jan 22, 2025
    Managing Schedules with the Blazor Scheduler 3: Adding Exceptions to the Schedule
  • 03:53
    Tue, Jan 21, 2025
    Sands of MAUI: Issue #171
  • 11:14
    Tue, Jan 21, 2025
    Angular Clean Coding Fundamentals
  • 03:14
    Fri, Jan 17, 2025
    Building Restful APIs with Deno and Oak
  • 12:16
    Thu, Jan 16, 2025
    Componentization with Telerik
  • 06:30
    Wed, Jan 15, 2025
    Deploying ASP.NET Core Applications with Docker—Part 1
  • 03:11
    Wed, Jan 15, 2025
    UX Crash Course: The Double Diamond Process
  • 05:57
    Tue, Jan 14, 2025
    Advanced Animations with .NET MAUI
  • 03:56
    Tue, Jan 14, 2025
    Managing Schedules with the Blazor Scheduler 2: Managing Schedules and Occurrences
  • 06:15
    Mon, Jan 13, 2025
    Sands of MAUI: Issue #170
  • 10:21
    Mon, Jan 13, 2025
    Angular Basics: Input, Output and View Queries
    

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