Hi all,
My XML looks like this:
<root>
<title>Some title here </title>
<table>
.....many table tags here with content....
</table>
</root>
Now in my XSL, when writing a template for the <table> tag, I need to refer to the <title> tag, and place it inside the <table> tags as:
<xsl:template match="table">
<cation><xsl:value-of select="????" /> </caption>
......
</xsl:template>
so that the <caption> tags appear within the <table> tags.
Is it possible to do this ? How?
TIA,
Sheila
My XML looks like this:
<root>
<title>Some title here </title>
<table>
.....many table tags here with content....
</table>
</root>
Now in my XSL, when writing a template for the <table> tag, I need to refer to the <title> tag, and place it inside the <table> tags as:
<xsl:template match="table">
<cation><xsl:value-of select="????" /> </caption>
......
</xsl:template>
so that the <caption> tags appear within the <table> tags.
Is it possible to do this ? How?
TIA,
Sheila