I have the following code in an xsl doc.
<td colspan="17">
<select name="frm" tabindex="1">
<option>
<xsl:attribute name="value"><xsl:value-of select="mci/form"/></xsl:attribute><xsl:value-of select="mci/form"/>
</option>
<option value="ROCK">ROCK</option>
<option value="PEBBLE">PEBBLE</option>
<option value="IRON">IRON</option>
<option value="GRAVEL">GRAVEL</option>
</select><br/>
My question is:
Can I test the frm option = Aspa in an XSL if statement.
<td colspan="17">
<select name="frm" tabindex="1">
<option>
<xsl:attribute name="value"><xsl:value-of select="mci/form"/></xsl:attribute><xsl:value-of select="mci/form"/>
</option>
<option value="ROCK">ROCK</option>
<option value="PEBBLE">PEBBLE</option>
<option value="IRON">IRON</option>
<option value="GRAVEL">GRAVEL</option>
</select><br/>
My question is:
Can I test the frm option = Aspa in an XSL if statement.