Hi all,
i need some help on xmlwriter. I take a look at the msdn sample on xmlwriter but want to change one thing.
in the sample the outpu is like that:
<?xml version="1.0" encoding="utf-8"?>
<test>
<Person> Titel="" Name="Schmidt" Vorname="Carlos" />
</test>
but whati want is a outlook like this (more like html):
<?xml version="1.0" encoding="utf-8"?>
<test>
<Person> Titel="" Name="Schmidt" Vorname="Carlos" </Person>
</test>


Reply With Quote