I am fairly new to xml and xsl, but I am having difficulty showing an item as selected in a select list after it has been populated. I can't seem to change the option value based on a variable. Here is my simpe code:
<select name="yr">
<xsl:for-each select="selections/taxyear/year">
<option>
<xsl:value-of select="text()"/>
</option>
</xsl:for-each>
</select>
Thanks
<select name="yr">
<xsl:for-each select="selections/taxyear/year">
<option>
<xsl:value-of select="text()"/>
</option>
</xsl:for-each>
</select>
Thanks