preserveWhiteSpace
Hi All,
I am using MSXML6.0 to create XLM document files. With the preserveWhiteSpace, I was able to have an indented XML file looks like this:
<Server>
<Bindings>
<Binding>
<ListenAddress>0.0.0.0</ListenAddress>
<Port>12</Port></Binding></Bindings>
However, I want to have the document to be indented like this:
<Server>
<Bindings>
<Binding>
<ListenAddress>0.0.0.0
</ListenAddress>
<Port>12
</Port>
</Binding>
</Bindings>
How do I tell the MSXML to preserveWhiteSpace like that?
Thanks.

