String Encode/Decode

myString = “KP’s” getting converted automatically to “KP&Apos;”

To address this

System.Net.WebUtility.HtmlDecode(myString)
= Converts back the string value to “KP’s”

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.