skip to Main Content

how to write html tags in a c# string

I want to include the following HTML code in my C# code: <span style="color: red; font-weight: bold;">Authorized.</span> However, when I include it in my C# code as is, it's getting transformed into the following: &lt;span style="color: red; font-weight: bold;"&gt;Authorized.&lt;/span&gt; When…

VIEW QUESTION
Back To Top
Search