I'm trying to generate a form with pre-existing values in the text boxes. For example:
<input type="text" name="firstname">
<xsl:attribute name="value">
<xsl:value-of select="firstname"/>
</xsl:attribute>
</input>
This works fine if I'm trying to use the field to create a name attribute. But the textboxes are recording no value when they appear in the page. Anyone know how I should be approaching this?
<input type="text" name="firstname">
<xsl:attribute name="value">
<xsl:value-of select="firstname"/>
</xsl:attribute>
</input>
This works fine if I'm trying to use the field to create a name attribute. But the textboxes are recording no value when they appear in the page. Anyone know how I should be approaching this?
Comment