I am trying to write a string out to an xml node
strConverted = strConverted + "<sup>" + Mid(strConvertMe, intC, 1) + "</sup>"
Doc = New XmlDocument()
Me.Root.AppendChild(h.BuildXML())
produces XML like this (in part):
String that was converted &#60;sup&#62;2&#60;/sup&#62;
more string stuff
see how the & in the string gets turned into &
anyone have any ideas how to stop this?