New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

Server-side Programming Overview

Overview of the Server-side APIs you can use to create and configure the Telerik WebForms Badge Control.

Creating the Badge in the Markup

To create a Badge in the markup, add the RadBadge element to the page and set its properties accordingly. You can find the properties in the following article:

Example

ASP.NET
<telerik:RadBadge runat="server" ID="RadBadge1" Icon="user" ThemeColor="Success" Rounded="Large" FillMode="Outline" />

Creating the Badge dynamically

To create the Badge on the server, create a new instance of the RadBadge object, set its properties and add it to the Controls collection of another control (e.g. PlaceHolder1).

You can find the properties and enums in the following articles:

Example

C#
protected void Page_PreInit(object sender, EventArgs e)
{
    RadBadge badge = new RadBadge()
    {
        Text = "Badge",
        Size = BadgeSize.Large,
        Rounded = BadgeRounded.Full,
        FillMode = BadgeFillMode.Outline,
        ThemeColor = BadgeThemeColor.Success,
        Position = BadgePosition.Edge,
        Align = BadgeAlign.BottomStart
    };

    PlaceHolder1.Controls.Add(badge); 
}

The PlaceHolder1

ASP.NET
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>

Creating controls programmatically must be done in an early event such as PreInit (preferably), Init. For more details you can check out the ASP.NET Page Life-Cycle Events

Next Steps