Hi,
I am parsing a XML document through XSL, and I wanted to break this document
into several pages.
So the first page has a link to the second page, and second to third...so
forth. Is there a way to do this?
thanks
Printable View
Hi,
I am parsing a XML document through XSL, and I wanted to break this document
into several pages.
So the first page has a link to the second page, and second to third...so
forth. Is there a way to do this?
thanks
See http://www.asptoday.com/articles/20001108.htm and its linked to its predecessor
article for a generic way to do this. You could then take the pronciples
and apply it to yours
Sean
"Henry" <henry.jiang@porvenir.com> wrote:
>
>Hi,
>
>I am parsing a XML document through XSL, and I wanted to break this document
>into several pages.
>So the first page has a link to the second page, and second to third...so
>forth. Is there a way to do this?
>
>thanks
From your main page, try cloneing the node you want to display on page2, then
pass the cloned xml text to page2, and display it using xsl for page2. If
your xml text is long, you may not want to do this.
"Henry" <henry.jiang@porvenir.com> wrote:
>
>Hi,
>
>I am parsing a XML document through XSL, and I wanted to break this document
>into several pages.
>So the first page has a link to the second page, and second to third...so
>forth. Is there a way to do this?
>
>thanks