html - Similar to jsp <logic:iterate> in XSL -


i want use kind of jsp logic in xsl

<logic:iterate name="myform" id="spec" property="specs">     parameter : <html:text name="spec" property="param" indexed="true" />     value : <html:text name="spec" property="val" indexed="true" />   </logic:iterate> 

is there way use <logic:iterate> similar jsp in xsl?

thanks in advance

some example

<xsl:for-each select="opportunity">   <xsl:value-of select="../@id" />   <xsl:if test="odd/@rate != 100">     <xsl:value-of select="../@number" />   </xsl:if> </xsl:for-each> 

Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -