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: <span style="color: red; font-weight: bold;">Authorized.</span> When…