How to display html tags in a Label in asp.net

Show HTML tags on a Label
The Label class Represents a label control, which displays text on a Web page. The asp.net developers can use the Label control to display text in a set location on the web page. Unlike static text, asp.net c# developers can customize the displayed text through the Text property.

The following asp.net c# tutorial code demonstrates how we can display HTML tags in a Label web server control. To show HTML tags on a Label control, the asp.net c# developers have to encode HTML tags.

The Server HTMLEncode() method applies HTML encoding to a specified string. The HTMLEncode() method is very useful and a quick method of encoding form data and other client request data before using it in a Web application. Encoding data converts potentially unsafe characters to their HTML-encoded equivalent.

The Server HTMLEncode() method has a parameter named string which specifies the string to encode. The Server HTMLEncode() method has no return values.
label-display-html.aspx

<%@ Page Language="C#" AutoEventWireup="true"%>  

<!DOCTYPE html>

<script runat="server">
    protected void Button1_Click(object sender, System.EventArgs e)
    {
        Label1.Text = Server.HtmlEncode("<form id='form1' runat='server'>");
        Label1.Text += "<br />";
        Label1.Text += Server.HtmlEncode("<title>asp.net example - label display html</title>");
    }  
</script>      

<html xmlns="http://www.w3.org/1999/xhtml">      
<head id="Head1" runat="server">      
    <title>asp.net example - label display html</title>
</head>      
<body>      
    <form id="form1" runat="server">      
    <div>      
        <h2 style="color:MidnightBlue; font-style:italic;">      
            asp.net example - label display html
        </h2>      
        <hr width="550" align="left" color="Gainsboro" />      
        <asp:Label       
            ID="Label1"       
            runat="server"      
            Text="sample label to display html."
            Font-Size="X-Large"
            >      
        </asp:Label>      
        <br /><br /><br />
        <asp:Button   
            ID="Button1"   
            runat="server"   
            Text="label display html"  
            OnClick="Button1_Click"
            Height="40"  
            Font-Bold="true"  
            />  
    </div>      
    </form>      
</body>      
</html>