Print Xml in one page using Xslt

  • Thread starter Thread starter Shay Gannot
  • Start date Start date
S

Shay Gannot

Hello All,

I need to print an XML file in one page. My problem is how to tell the
XML using XSLT to start another TD after 80 lines. For example my XML
looks like this

<Directory>
<Department>
<Name>Main</Name>
<Number>
<tel>555</tel>
<tel>55</tel>
</Number>
</Department>
..
..
..
..
..
<Department>
<Name>Main1</Name>
<Number>
<tel>5556</tel>
<tel>556</tel>
</Number>
</Department>
..
..
..
..

<Department>
<Name>Main2</Name>
<Number>
<tel>5554</tel>
<tel>552</tel>
</Number>
</Department>
</Directory>

I want it to print like this

Main Main2 Main3
------ ----- -------
555 5556 5554
55 556 552

Each time it reaches 80 lines it starts a new TD from the top of the
page

Any help would be appreciated

Thanks
Shay
 
I'd suggest asking this in microsoft.public.xml

This newsgroup is for questions about Access, the database product.
 
Back
Top