I'm new to the world of XSL. I have gotten my HTML page to a point where textboxes, labels, headers, etc have been outputted perfectly.
The problem I'm having is with this code:
<xsl:template match="/Selectlist/Select">
<select name="menu">
<option>
<xsl:attribute name="Value">
<xsl:value-of select="ID" />
</xsl:attribute>
<xsl:value-of select="Name" />
</option>
</xsl:template>
This code appears after: <xsl:template match="/"> ... </xsl:template>
I'm getting no output or error afer the ouput from the first <xsl:template match=.../>
The problem I'm having is with this code:
<xsl:template match="/Selectlist/Select">
<select name="menu">
<option>
<xsl:attribute name="Value">
<xsl:value-of select="ID" />
</xsl:attribute>
<xsl:value-of select="Name" />
</option>
</xsl:template>
This code appears after: <xsl:template match="/"> ... </xsl:template>
I'm getting no output or error afer the ouput from the first <xsl:template match=.../>