How can I stop XmlSerializer transforming ê to ê in an attribute?
- by paul
I have the following DOM
<row>
<link href="Büro.txt" target="_blank">
my link
</link>
</row>
When I serialize it to a file using XmlSerializer it comes out like this:
<row>
<link href="B&#252;ro.txt" target="_blank">
my link
</link>
</row>
Is there any way to control the way XmlSerializer handles escaping in attributes? Should I be doing this differently any way?