Hi, I have a question ....
If I want to place the CheckBoxName variable into the name and the CheckBoxValue variable into the value field of my checkbox, how do I use escape characters so as this work correctly???
<xsl:for-each select="//Holding">
<xsl:variable name="CheckBoxName" select="PlanName"/>
<xsl:variable name="CheckBoxValue" select="PolNumber"/>
<tr valign = "top" align="center">
<td width="10%">
<input type="checkbox" name="" value""/>
</td>
</tr>
</xsl:for-each>
If I want to place the CheckBoxName variable into the name and the CheckBoxValue variable into the value field of my checkbox, how do I use escape characters so as this work correctly???
<xsl:for-each select="//Holding">
<xsl:variable name="CheckBoxName" select="PlanName"/>
<xsl:variable name="CheckBoxValue" select="PolNumber"/>
<tr valign = "top" align="center">
<td width="10%">
<input type="checkbox" name="" value""/>
</td>
</tr>
</xsl:for-each>