Hi rakibxl,
Use HtmlDecode.
HTML
<asp:Label ID="lblDescription" runat="server" />
Code
C#
protected void Page_Load(object sender, EventArgs e)
{
lblDescription.Text = Server.HtmlDecode("<B>Managing DEP registered devices</B><br />- Being one of the Italian DEP resellers, Econocom has the ability to associate all iPhone serial numbers to the Customer ID at the time of purchase,;<br />- Therefore the Customer will see all the devices in his own DEP portal (without any access for Econocom) and will have to import them, linking them to his MDM");
}
VB.Net
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
lblDescription.Text = Server.HtmlDecode("<B>Managing DEP registered devices</B><br />- Being one of the Italian DEP resellers, Econocom has the ability to associate all iPhone serial numbers to the Customer ID at the time of purchase,;<br />- Therefore the Customer will see all the devices in his own DEP portal (without any access for Econocom) and will have to import them, linking them to his MDM")
End Sub
Output
Managing DEP registered devices
- Being one of the Italian DEP resellers, Econocom has the ability to associate all iPhone serial numbers to the Customer ID at the time of purchase,;
- Therefore the Customer will see all the devices in his own DEP portal (without any access for Econocom) and will have to import them, linking them to his MDM