I want to send the value from the 3 tags <paper>, <sides> and <count> to the jsp function.My existing XSL is:
Can anyone please help??
Code:
<xsl:for-each select="EScan">
<tr align="center" >
<xsl:variable name="paperValue" select="Paper" />
<xsl:variable name="sidesValue" select="Sides" />
<xsl:variable name="countValue" select="Count" />
<td align="left" class="greyheadertextbold"><a href="javascript:onDeleteClick1('{$paperValue}','{$sidesValue}','{$countValue}')" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('delete2','','delete2.gif',1)">delete</a></td>
</tr>
</xsl:for-each>
Comment