I have to create a word document based on a xml document. i need each child node of the xml to display on its own page. Below is a sample xml file:
<NewDataSet>
<CoverSheetInfo>
<Number>123</Number>
<Name>Test 1</Name>
</CoverSheetInfo>
<CoverSheetInfo>
<Number>123</Number>
<Name>Test 2</ClientName>
</CoverSheetInfo>
</NewDataSet>
using this xml i need to display the coversheet child elements on different pages. Can someone tell me how to do this?
<NewDataSet>
<CoverSheetInfo>
<Number>123</Number>
<Name>Test 1</Name>
</CoverSheetInfo>
<CoverSheetInfo>
<Number>123</Number>
<Name>Test 2</ClientName>
</CoverSheetInfo>
</NewDataSet>
using this xml i need to display the coversheet child elements on different pages. Can someone tell me how to do this?