G
G. Ralph Kuntz, MD, MS
How do people deal with out-of-order document? Let me clarify.
Let's say we have an input document having the following format:
<document>
section 1
section 2
section 3
</document>
we want the resulting output document to have the structure
<document>
section 3
section 2
section 1
</document>
Since the xsl template matching will match section 1, then section 2,
etc. how do we get the output into the format we want?
Do you use param(s) to store intermediate values?
Thanks, Ralph
Let's say we have an input document having the following format:
<document>
section 1
section 2
section 3
</document>
we want the resulting output document to have the structure
<document>
section 3
section 2
section 1
</document>
Since the xsl template matching will match section 1, then section 2,
etc. how do we get the output into the format we want?
Do you use param(s) to store intermediate values?
Thanks, Ralph