Hi All,
How to use parameter value as ID of HTML's table in XSLT.
Like below:
Code:
<xsl:template match="Apply">
<xsl:param name="tblID" select="@Id"></xsl:param>
<html>
<body>
<table id="$tblID">
<tr>
<td><xsl:value-of select="./title/text()"/></td>
</tr>
</table>
</body>
</html>
</xsl:template>
Can i do that?
Thanks
UTYK