I've discovered the interesting issue with taking body content that contains single quotes and serializing that into an XML document, which is actually intended to be viewed as HTML. The result is that it mucks up (replaces with "'") the single quotes when it is viewed in IE (although not in Mozilla, interestingly).
I have code which is currently using the XMLSerializer class. What is the best way to resolve this issue? I noticed the "setNonEscapingElements()" method, but that's sort of brutal. I still want it to encode "<" characters, but not "'" characters. Should I be using a different serializer? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
