posted 22 years ago
Hi all,
I need to get an XSL value into an HTML table. Like:
<xsl:for-each select="Jobs/Listing/Requisition">
<tr>
<td>
<input type="radio" value= "<xsl:value-of select="ReqNo"/>" name = "radio"></input>
</td>
</xsl:for-each>
In the above non-working code, I need the value of each radio button to be equal to the value of the ReqNo tag.
I've been looking and looking but am stumped on this one.
TIA
Bob....