Hi,
I am saving "Children’s Music & videos" to xml
so i used the following code to convert the special symbols
string str = "Children’s Music & videos";
string temp = HttpUtility.HtmlEncode(str);
but the xml is not readable after saving the encoded value. How can i save this special symbols to xml
Thanks,