Click to See Complete Forum and Search --> : Text file from XML


Jarda
11-22-2001, 09:38 AM
Hi,

I need create a text file (CSV) from an XML file using XSL. I have installed
an MS XML parser 2.6 and 3.0. and I'm using transformNode to convert XML
into Output.

How can I wrap a line after each row and header?

xml file:
<root>
<header>
<col>column 1</col>
<col>column 2</col>
</header>
<rows>
<row col1="text 11" col2="text21"/>
<row col1="text 12" col2="text22"/>
<row col1="text 13" col2="text23"/>
</rows>
</root>

Thank for your advice

Jarda