I am sooooo new at this ... please help.
I am returning an xml document from a sql server stored procedure that returns data from more than one table. My resulting xml documentl looks something like this:
<ROOT>
<TABLE1>
...
</TABLE>
<TABLE2>
...
</TABLE2>
</ROOT>
How do I reference this in the match to get data from both? I tried just referencing ROOT but it doesn't quite work right.
This is what I have:
<xsl:template match="//TABLE1|//TABLE2">
Please advise as to what I'm doing wrong ...
Many Thanks,
- VB Rookie