* Johnny Ljunggren wrote in microsoft.public.dotnet.xml:
>Just noticed that a testprogram I've made creates a non-conforming XML
>file.
The characters ' and " need to be escaped if and only if they are
supposed to occur in an attribute value that is delimited using the
same character, so name='Teal'C' is not allowed, but name="Teal'C"
is. So the content is fine, and I would suggest to not worry about
this.

Signature
Björn Höhrmann · mailto:bjoern@hoehrmann.de · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/
Johnny Ljunggren - 06 Jul 2006 09:54 GMT
>> Just noticed that a testprogram I've made creates a non-conforming XML
>> file.
> The characters ' and " need to be escaped if and only if they are
> supposed to occur in an attribute value that is delimited using the
> same character
Thanks!
Johnny L