Print Xml in one page using Xslt

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
 
D

Douglas J. Steele

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

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top